@model MileageTraker.Web.ViewModels.VehicleService.UpdateServiceRemindersViewModel @{ ViewBag.Title = "Update Service Reminders"; } @Html.Partial("_StatusMessage")

@ViewBag.Title

Add the next service for this vehicle and remove existing reminders.

@using (Html.BeginForm("UpdateServiceReminders", "VehicleService", FormMethod.Post, new { @class = "form-horizontal well center-content" })) { @Html.Partial("_ValidationSummary") @Html.HiddenFor(m => m.VehicleId) if (Model.DeleteServiceReminders.Available.Count > 0) {
Delete Reminders for this Vehicle? @Html.EditorFor(m => m.DeleteServiceReminders)
}
Add a new Reminder? @Html.DisplayFor(m => m.CurrentOdometer) @Html.EditorFor(m => m.TargetOdometer) @Html.EditorFor(m => m.Description)
}