@model MileageTraker.Web.ViewModels.CreateLog.CreateLogViewModel @{ ViewBag.Title = "Enter Mileage Log"; Layout = "~/Views/Shared/_Layout.cshtml"; } @section Styles { } @section Scripts { } @using (Html.BeginForm("Index", "CreateLog", FormMethod.Post, new { @class = "form-horizontal" })) {
@ViewBag.Title @Html.Partial("_ValidationSummary") @Html.EditorForModel()
}