Add Fuel Log details
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
@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>
|
||||
Reference in New Issue
Block a user