mirror of https://github.com/Radarr/Radarr
17 lines
290 B
Plaintext
17 lines
290 B
Plaintext
|
@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>
|
||
|
}
|