18 lines
664 B
Plaintext
18 lines
664 B
Plaintext
@model MileageTraker.Web.ViewModels.VehicleService.VehicleServiceViewModel
|
|
|
|
@{
|
|
ViewBag.Title = "Vehicle Service Details" ;
|
|
}
|
|
|
|
@Html.Partial("_StatusMessage")
|
|
|
|
<h2 class="center-content"><i class="fa fa-wrench"></i> @ViewBag.Title</h2>
|
|
<div class="center-content well">
|
|
@Html.DisplayForModel()
|
|
</div>
|
|
|
|
<div class="center-content btn-toolbar">
|
|
@Html.ActionLink("Edit", "Edit", new { id = Model.VehicleServiceId }, new { @class = "btn" })
|
|
@Html.ActionLink("Delete", "Delete", new { id = Model.VehicleServiceId }, new { @class = "btn" })
|
|
@Html.ActionLink("Vehicle Details", "Details", "Vehicle", new { id = Model.VehicleId }, new{@class="btn"})
|
|
</div> |