mirror of
https://github.com/lidarr/Lidarr
synced 2025-01-04 22:10:52 +00:00
16 lines
290 B
Text
16 lines
290 B
Text
@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>
|
|
}
|