Sonarr/NzbDrone.Web/Views/Update/Index.cshtml

29 lines
627 B
Plaintext

@model NzbDrone.Web.Models.UpdateModel
@{ViewBag.Title = "Update";}
@if (Model.UpdatePackage == null)
{
<h2>
There are no updates available.</h2>
}
else
{
<h2>
Available Update: @Model.UpdatePackage.Version
@Ajax.ActionLink("Update", "StartUpdate", "Update", null)
</h2>
}
@if (Model.LogFiles.Count != 0)
{
<h3>
Update Logs (@Model.LogFolder)
</h3>
<br />
foreach (var log in Model.LogFiles)
{
<div>
<a href="@Url.Action("ViewLog", "Update", new { filePath = log.Value })">
@log.Key.ToString("MMM dd, hh:mm tt")</a>
</div>
}
}