@model MileageTraker.Web.ViewModels.VehicleRecall.VehicleRecallViewModel @{ ViewBag.Title = "Delete Vehicle Recall"; } @Html.Partial("_StatusMessage")

@ViewBag.Title

Are you sure you wish to delete this recall?
@Html.DisplayForModel() @using (Html.BeginForm("Delete", "VehicleRecall", FormMethod.Post, new { @class = "form-horizontal" })) {
@Html.ActionLink("Cancel", "Details", new { id = Model.VehicleRecallId }, new { @class = "btn" })
}