20 lines
422 B
Plaintext
20 lines
422 B
Plaintext
@model MileageTraker.Web.Models.Vehicle
|
|
|
|
@{
|
|
ViewBag.Title = "Vehicle Details";
|
|
}
|
|
|
|
@section Styles {
|
|
<link href="@Url.Content("~/Content/VehicleColors.css")" rel="stylesheet" type="text/css" />
|
|
}
|
|
|
|
@{ Html.RenderPartial("BackToVehicles"); }
|
|
|
|
<h2>@ViewBag.Title</h2>
|
|
|
|
@Html.DisplayForModel()
|
|
|
|
<div class="btn-toolbar">
|
|
@Html.ActionLink("Edit", "Edit", new { id = Model.VehicleId }, new { @class = "btn" })
|
|
</div>
|