Files
MileageTraker/Web/Views/VehicleService/Create.cshtml
T

27 lines
908 B
Plaintext

@model MileageTraker.Web.ViewModels.VehicleService.VehicleServiceViewModel
@{
ViewBag.Title = "Record Vehicle Service";
}
<h2 class="center-content"><i class="fa fa-wrench"></i> @ViewBag.Title</h2>
<h4 class="center-content">Track completed service for a vehicle</h4>
@using (Html.BeginForm("Create", "VehicleService", FormMethod.Post, new { @class = "form-horizontal well center-content" }))
{
@Html.Partial("_ValidationSummary")
<fieldset>
<legend></legend>
<div class="control-group">
<div class="control-label">
<label>Vehicle ID</label>
</div>
<div class="controls">
<b>@Model.VehicleId</b>
</div>
</div>
@Html.EditorForModel()
<div class="form-actions">
<input type="submit" value="Create" class="btn btn-primary" />
</div>
</fieldset>
}