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