9 lines
266 B
Plaintext
9 lines
266 B
Plaintext
@model MileageTraker.Web.ViewModels.CreateLog.ImportLogViewModel
|
|
@{
|
|
Layout = null;
|
|
}
|
|
@using (Html.BeginForm("ImportFix", "CreateLog", FormMethod.Post, new{target="_blank"}))
|
|
{
|
|
@Html.EditorForModel()
|
|
<input type="submit" value="Fix" class="btn btn-mini" />
|
|
} |