New style partially complete

This commit is contained in:
2012-12-12 15:32:03 -05:00
parent 86ee45c184
commit 14d8054f22
85 changed files with 10261 additions and 1081 deletions
+8 -7
View File
@@ -6,14 +6,15 @@
<h2>@ViewBag.Title</h2>
<h3>Are you sure you want to delete this?</h3>
<fieldset>
<legend>Log</legend>
@Html.DisplayForModel()
</fieldset>
@Html.ActionLink("Back to List", "Index", null, new { @class = "btn" })
<h3>Are you sure you wish to delete this log?</h3>
@Html.DisplayForModel()
@using (Html.BeginForm()) {
<p>
<input type="submit" value="Delete" />
@Html.ActionLink("Back to List", "Index", null, new { @class = "ui-button" })
<input type="submit" value="Delete" class="btn btn-warning" />
@Html.ActionLink("Cancel", "Details", new { id = Model.LogId }, new { @class = "btn" })
</p>
}