20 lines
439 B
Plaintext
20 lines
439 B
Plaintext
@model MileageTraker.Web.ViewModels.FuelLog.FuelLogViewModel
|
|
|
|
@{
|
|
ViewBag.Title = "Fuel Log Details";
|
|
}
|
|
|
|
@Html.Partial("_StatusMessage")
|
|
|
|
<h2 class="center-content">@ViewBag.Title</h2>
|
|
|
|
<div class="center-content well">
|
|
@Html.DisplayForModel()
|
|
</div>
|
|
|
|
<div class="center-content btn-toolbar">
|
|
@if (Model.LogId != null)
|
|
{
|
|
@Html.ActionLink("View Mileage Log", "Details", "Log", new {id = Model.LogId}, new {@class = "btn"})
|
|
}
|
|
</div> |