yavsc/src/Yavsc/Views/Comments/Delete.cshtml

58 lines
1.5 KiB
Text
Raw Normal View History

2017-10-04 23:53:47 +02:00
@model Yavsc.Models.Blog.Comment
@{
2019-06-23 00:05:23 +01:00
ViewData["Title"] = @SR["Delete"];
2017-10-04 23:53:47 +02:00
}
2019-06-23 00:05:23 +01:00
<h2>@SR["Delete"]</h2>
2017-10-04 23:53:47 +02:00
2019-06-23 00:05:23 +01:00
<h3>@SR["AreYourSureYouWantToDeleteThis"]</h3>
2017-10-04 23:53:47 +02:00
<div>
<h4>Comment</h4>
<hr />
<dl class="dl-horizontal">
<dt>
@Html.DisplayNameFor(model => model.Content)
</dt>
<dd>
@Html.DisplayFor(model => model.Content)
</dd>
<dt>
@Html.DisplayNameFor(model => model.DateCreated)
</dt>
<dd>
@Html.DisplayFor(model => model.DateCreated)
</dd>
<dt>
@Html.DisplayNameFor(model => model.DateModified)
</dt>
<dd>
@Html.DisplayFor(model => model.DateModified)
</dd>
<dt>
@Html.DisplayNameFor(model => model.UserCreated)
</dt>
<dd>
@Html.DisplayFor(model => model.UserCreated)
</dd>
<dt>
@Html.DisplayNameFor(model => model.UserModified)
</dt>
<dd>
@Html.DisplayFor(model => model.UserModified)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Visible)
</dt>
<dd>
@Html.DisplayFor(model => model.Visible)
</dd>
</dl>
<form asp-action="Delete">
<div class="form-actions no-color">
<input type="submit" value="Delete" class="btn btn-default" /> |
2019-06-23 00:05:23 +01:00
<a asp-action="Index">@SR["Back to List"]</a>
2017-10-04 23:53:47 +02:00
</div>
</form>
</div>