25 lines
572 B
Plaintext
25 lines
572 B
Plaintext
@model MileageTraker.Web.Models.Vehicle
|
|
|
|
@{
|
|
ViewBag.Title = "Create Vehicle";
|
|
}
|
|
|
|
@{ Html.RenderPartial("BackToVehicles"); }
|
|
|
|
<h2>@ViewBag.Title</h2>
|
|
|
|
@using (Html.BeginForm("Create", "Vehicle", FormMethod.Post, new { @class = "form-horizontal" }))
|
|
{
|
|
@Html.Partial("_ValidationSummary")
|
|
<fieldset>
|
|
<legend></legend>
|
|
@Html.EditorForModel()
|
|
|
|
<div class="control-group">
|
|
<div class="controls">
|
|
<input type="submit" value="Create" class="btn btn-primary" />
|
|
</div>
|
|
</div>
|
|
</fieldset>
|
|
}
|