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