Files
MileageTraker/Web/Views/Log/ImportUpload.cshtml
T

23 lines
704 B
Plaintext

@model MileageTraker.Web.ViewModels.Log.ImportUploadViewModel
@{
ViewBag.Title = "Import Logs";
}
@{ Html.RenderPartial("BackToLogs"); }
@Html.Partial("_StatusMessage")
<h2 class="center-content"><i class="fa fa-road"></i> @ViewBag.Title</h2>
<p class="center-content">Download the import template: @Html.ActionLink("Excel Template", "ImportTemplate")
</p>
@using (Html.BeginForm("Import", "Log", FormMethod.Post, new { enctype="multipart/form-data", @class = "form-horizontal well center-content", style="max-width:440px"}))
{
@Html.Partial("_ValidationSummary")
@Html.EditorForModel()
<div class="form-actions">
<input type="submit" value="Import" class="btn btn-primary" />
</div>
}