10 lines
447 B
Plaintext
10 lines
447 B
Plaintext
@model MileageTraker.Web.ViewModels.ServiceReminder.ServiceReminderViewModel
|
|
|
|
<div class="well">
|
|
<h4 class="center-content"><i class="fa fa-clock-o"></i> Service Reminder</h4>
|
|
@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> |