Files
MileageTraker/Web/Views/Log/Delete.cshtml
T
2012-12-12 21:41:38 -05:00

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>
}