Add TSV support.
Import Upload
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
@model MileageTraker.Web.ViewModels.FuelLog.FuelLogImportUploadViewModel
|
||||
@{
|
||||
ViewBag.Title = "Import Fuel Logs";
|
||||
}
|
||||
|
||||
@Html.Partial("_StatusMessage")
|
||||
|
||||
<h2 class="center-content">@ViewBag.Title</h2>
|
||||
|
||||
@using (Html.BeginForm("Import", "FuelLog", 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>
|
||||
}
|
||||
Reference in New Issue
Block a user