@model MileageTraker.Web.Models.Log @{ ViewBag.Title = "Create Log"; } @section Styles { } @section Scripts { } @{ Html.RenderPartial("BackToLogs"); }

@ViewBag.Title

@using (Html.BeginForm("Create", "Log", FormMethod.Post, new { @class = "form-horizontal" })) { @Html.ValidationSummary(true)
Log @Html.EditorForModel()
}