9 lines
230 B
Plaintext
9 lines
230 B
Plaintext
@model MileageTraker.Web.ViewModels.VehiclePartialDetails
|
|
@{
|
|
Layout = null;
|
|
}
|
|
<h5>Vehicle</h5>
|
|
@Html.DisplayForModel()
|
|
<div>
|
|
@Html.ActionLink("Details", "Details", new { id = Model.VehicleId }, new { @class = "btn"})
|
|
</div> |