28 lines
631 B
Plaintext
28 lines
631 B
Plaintext
@model MileageTraker.Web.Models.Log
|
|
|
|
@{
|
|
ViewBag.Title = "Edit Log";
|
|
}
|
|
|
|
<h2>@ViewBag.Title</h2>
|
|
|
|
<script src="@Url.Content("~/Scripts/jquery.validate.min.js")" type="text/javascript"></script>
|
|
<script src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.min.js")" type="text/javascript"></script>
|
|
|
|
@using (Html.BeginForm()) {
|
|
@Html.ValidationSummary(true)
|
|
<fieldset>
|
|
<legend>Log</legend>
|
|
|
|
@Html.EditorForModel()
|
|
|
|
<p>
|
|
<input type="submit" value="Save" />
|
|
</p>
|
|
</fieldset>
|
|
}
|
|
|
|
<p>
|
|
@Html.ActionLink("Back to List", "Index", null, new { @class = "ui-button" })
|
|
</p>
|