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