Add ability to fix errors during import

This commit is contained in:
2014-02-03 21:16:35 -05:00
parent 3ab80e283a
commit 8b8d82f3d3
8 changed files with 88 additions and 49 deletions
+9
View File
@@ -0,0 +1,9 @@
@model MileageTraker.Web.ViewModels.LogImportViewModel
@{
Layout = null;
}
@using (Html.BeginForm("ImportFix", "Log", FormMethod.Post, new{target="_blank"}))
{
@Html.EditorForModel()
<input type="submit" value="Fix" class="btn btn-mini" />
}