21 lines
436 B
Plaintext
21 lines
436 B
Plaintext
@model MileageTraker.Web.Models.Log
|
|
|
|
@{
|
|
ViewBag.Title = "Delete Log";
|
|
}
|
|
|
|
@{ Html.RenderPartial("BackToLogs"); }
|
|
|
|
<h2>@ViewBag.Title</h2>
|
|
|
|
<h3>Are you sure you wish to delete this log?</h3>
|
|
|
|
@Html.DisplayForModel()
|
|
|
|
@using (Html.BeginForm()) {
|
|
<p>
|
|
<input type="submit" value="Delete" class="btn btn-warning" />
|
|
@Html.ActionLink("Cancel", "Details", new { id = Model.LogId }, new { @class = "btn" })
|
|
</p>
|
|
}
|