source: PostgreSqlDotnetCore/Views/BlogPostAnswers/Delete.cshtml@ 784b3ad

main
Last change on this file since 784b3ad was 2aea0fd, checked in by ElenaMoskova <elena.moskova99@…>, 2 months ago

init commit Elena

  • Property mode set to 100644
File size: 845 bytes
Line 
1@model PostgreSqlDotnetCore.Models.BlogPostAnswers
2
3@{
4 ViewBag.Title = "Delete";
5}
6
7<h2>Delete</h2>
8
9<h3>Are you sure you want to delete this?</h3>
10<div>
11 <h4>Blog_Post_Answers</h4>
12 <hr />
13 <dl class="dl-horizontal">
14 <dt>
15 @Html.DisplayNameFor(model => model.parent_id)
16 </dt>
17
18 <dd>
19 @Html.DisplayFor(model => model.parent_id)
20 </dd>
21 <dt>
22 @Html.DisplayNameFor(model => model.reply)
23 </dt>
24
25 <dd>
26 @Html.DisplayFor(model => model.reply)
27 </dd>
28
29 </dl>
30
31 @using (Html.BeginForm()) {
32 @Html.AntiForgeryToken()
33
34 <div class="form-actions no-color">
35 <input type="submit" value="Delete" class="btn btn-default" /> |
36 @Html.ActionLink("Back to List", "Index")
37 </div>
38 }
39</div>
Note: See TracBrowser for help on using the repository browser.