Files
MileageTraker/Web/Views/Shared/DisplayTemplates/VehicleServiceLink.cshtml
T
2020-09-20 22:07:13 -04:00

7 lines
196 B
Plaintext

@{
Layout = "~/Views/Shared/DisplayTemplates/_FieldLayout.cshtml";
}
@if (Model != null)
{
@Html.ActionLink("View Vehicle Service", "Details", "VehicleService", new { id = Model}, null)
}