23 lines
555 B
Plaintext
23 lines
555 B
Plaintext
@model MileageTraker.Web.Models.Log
|
|
|
|
@{
|
|
ViewBag.Title = "Create Log";
|
|
}
|
|
|
|
@{ Html.RenderPartial("BackToLogs"); }
|
|
|
|
<h2>@ViewBag.Title</h2>
|
|
|
|
@using (Html.BeginForm("Create", "Log", 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>
|
|
}
|