mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-22 22:15:17 -04:00
Hidden startup, shutodwn and restart
New: Run without console window by default New: Added NzbDrone.Console to run with console window New: Shutdown from UI New: Restart from UI
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
@using NzbDrone.Web.Helpers
|
||||
@{
|
||||
ViewBag.Title = "System";
|
||||
}
|
||||
|
||||
@section HeaderContent
|
||||
{
|
||||
@Html.IncludeCss("Settings.css")
|
||||
<style>
|
||||
.controls {
|
||||
width: 620px;
|
||||
padding: 14px;
|
||||
}
|
||||
</style>
|
||||
}
|
||||
|
||||
@section ActionMenu{
|
||||
<ul class="sub-menu">
|
||||
<li>@Ajax.ActionLink("Restart", "Restart", "System", null, null, new { Title = "Restart NzbDrone" })</li>
|
||||
<li>@Ajax.ActionLink("Shutdown", "Shutdown", "System", null, null, new { Title = "Shutdown NzbDrone" })</li>
|
||||
<li>@Html.ActionLink("Logs", "Logs", "System")</li>
|
||||
</ul>
|
||||
}
|
||||
|
||||
<div id="stylized">
|
||||
<div class="controls">
|
||||
<label class="labelClass"> Backup Configuration
|
||||
<span class="small">Backup your Configuration file and Database</span>
|
||||
</label>
|
||||
<input type="button" value="Backup" onclick="window.location='../System/Backup'; return false;" class="inputClass" />
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user