28 lines
722 B
Plaintext
28 lines
722 B
Plaintext
@model MileageTraker.Web.ViewModels.VehicleRecall.VehicleRecallViewModel
|
|
|
|
@{
|
|
ViewBag.Title = "Edit Vehicle Recall";
|
|
}
|
|
|
|
@section Scripts {
|
|
<script type="text/javascript">
|
|
VehicleInput_ShowDetails();
|
|
</script>
|
|
}
|
|
|
|
@Html.Partial("_StatusMessage")
|
|
|
|
<h2 class="center-content"><i class="fa fa-refresh"></i> @ViewBag.Title</h2>
|
|
|
|
@using (Html.BeginForm("Edit", "VehicleRecall", FormMethod.Post, new { @class = "form-horizontal well center-content" }))
|
|
{
|
|
@Html.Partial("_ValidationSummary")
|
|
<fieldset>
|
|
<legend></legend>
|
|
@Html.EditorForModel()
|
|
<div class="form-actions">
|
|
<input type="submit" value="Save" class="btn btn-primary" />
|
|
</div>
|
|
</fieldset>
|
|
}
|