Files
MileageTraker/Web/Views/CreateLog/ImportUpload.cshtml
T
2014-02-05 15:02:10 -05:00

21 lines
649 B
Plaintext

@model MileageTraker.Web.ViewModels.CreateLog.ImportUploadViewModel
@{
ViewBag.Title = "Import Logs";
}
@Html.Partial("_StatusMessage")
<h2 class="center-content">@ViewBag.Title</h2>
<p class="center-content">Download the import template: @Html.ActionLink("Excel Template", "ImportTemplate")
</p>
@using (Html.BeginForm("Import", "CreateLog", 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>
}