21 lines
500 B
Plaintext
21 lines
500 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" />
|
|
}
|
|
|
|
<h2>@ViewBag.Title</h2>
|
|
|
|
<fieldset>
|
|
<legend>Vehicle</legend>
|
|
@Html.DisplayForModel()
|
|
</fieldset>
|
|
<p>
|
|
@Html.ActionLink("Edit", "Edit", new { id = Model.VehicleId }, new { @class = "ui-button" })
|
|
@Html.ActionLink("Back to List", "Index", null, new { @class = "ui-button" })
|
|
</p>
|