You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
561 B
20 lines
561 B
13 years ago
|
@model NzbDrone.Web.Models.PostUpgradeModel
|
||
|
@{
|
||
|
ViewBag.Title = "Post Upgrade";
|
||
|
}
|
||
|
|
||
|
@if (Model.Success)
|
||
|
{
|
||
|
<h1><strong>Successfully upgraded to @(Model.CurrentVersion)</strong></h1>
|
||
|
}
|
||
|
|
||
|
else{
|
||
|
<h1><strong>Failed to upgrade to @(Model.ExpectedVersion)</strong></h1>
|
||
|
|
||
|
<div>
|
||
|
<h3>Please review the log file:
|
||
|
<a href="@Url.Action("ViewLog", "Update", new { filePath = Model.LogFile.Value })">
|
||
|
@Model.LogFile.Key.ToString("MMM dd, hh:mm tt")</a></h3>
|
||
|
</div>
|
||
|
}
|