Files
MileageTraker/Web/Views/ServiceReminder/ServiceReminderViewModel.cshtml
T

10 lines
394 B
Plaintext

@model MileageTraker.Web.ViewModels.ServiceReminder.ServiceReminderViewModel
<div class="well">
<h3>Service Reminder</h3>
@Html.DisplayForModel()
<div class='btn-toolbar'>
@Html.ActionLink("Edit", "Edit", new { id = Model.ServiceReminderId }, new { @class = "btn" })
@Html.ActionLink("Delete", "Delete", new { id = Model.ServiceReminderId }, new { @class = "btn" })
</div>
</div>