mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 10:47:08 -07:00
UI for automatic update.
This commit is contained in:
parent
571998e70e
commit
8779a37f7f
5 changed files with 77 additions and 5 deletions
16
NzbDrone.Web/Views/Update/Index.cshtml
Normal file
16
NzbDrone.Web/Views/Update/Index.cshtml
Normal file
|
@ -0,0 +1,16 @@
|
|||
@model NzbDrone.Core.Model.UpdatePackage
|
||||
@section TitleContent{
|
||||
Update
|
||||
}
|
||||
@if (Model == null)
|
||||
{
|
||||
<h2>
|
||||
There are no updates available.</h2>
|
||||
}
|
||||
else
|
||||
{
|
||||
<h2>
|
||||
Available Update: @Model.Version
|
||||
@Ajax.ActionLink("Update", "StartUpdate", "Update", null)
|
||||
</h2>
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue