UI for automatic update.

This commit is contained in:
kay.one 2011-11-13 22:01:51 -08:00
commit 8779a37f7f
5 changed files with 77 additions and 5 deletions

View 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>
}