32 lines
898 B
Plaintext
32 lines
898 B
Plaintext
@using MileageTraker.Web.ViewModels.VehicleService
|
|
@model MileageTraker.Web.ViewModels.CreateLog.CreateLogViewModel
|
|
@{
|
|
|
|
ViewBag.Title = "Enter Mileage Log";
|
|
}
|
|
|
|
@Html.Partial("_StatusMessage")
|
|
|
|
<h2 class="center-content">@ViewBag.Title</h2>
|
|
|
|
@using (Html.BeginForm("Index", "CreateLog", FormMethod.Post, new { @class = "form-horizontal well center-content" }))
|
|
{
|
|
<fieldset>
|
|
<legend></legend>
|
|
@Html.Partial("_ValidationSummary")
|
|
@Html.EditorForModel()
|
|
<div class="form-actions">
|
|
<input type="submit" value="Submit" class="btn btn-primary" />
|
|
</div>
|
|
</fieldset>
|
|
}
|
|
|
|
<div id="RecentLogs" class="center-content well">
|
|
|
|
</div>
|
|
|
|
@Html.Partial("VehicleSelect", new VehicleSelectViewModel())
|
|
|
|
<div class="center-content" style="text-align: center">
|
|
@Html.ActionLink("Import", "ImportUpload", new {}, new { @class = "btn"})
|
|
</div> |