24 lines
722 B
Plaintext
24 lines
722 B
Plaintext
@model MileageTraker.Web.Models.Log
|
|
|
|
@{
|
|
ViewBag.Title = "Log Details";
|
|
}
|
|
|
|
<h2>@ViewBag.Title</h2>
|
|
<p>
|
|
@Html.ActionLink("Previous", "PreviousDetails", new { id = Model.LogId }, new { @class = "ui-button" })
|
|
@Html.ActionLink("Next", "NextDetails", new { id = Model.LogId }, new { @class = "ui-button" })
|
|
@if(TempData["Message"] != null) {
|
|
<span class="ui-message ui-state-highlight ui-corner-all">@TempData["Message"]</span>
|
|
}
|
|
</p>
|
|
|
|
<fieldset>
|
|
<legend>Log</legend>
|
|
@Html.DisplayForModel()
|
|
</fieldset>
|
|
<p>
|
|
@Html.ActionLink("Edit", "Edit", new { id = Model.LogId }, new { @class = "ui-button" })
|
|
@Html.ActionLink("Back to List", "Index", null, new { @class = "ui-button" })
|
|
</p>
|