mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-02 08:47:59 +02:00
UI for automatic update.
This commit is contained in:
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>
|
||||
}
|
Reference in New Issue
Block a user