source: PostgreSqlDotnetCore/Views/Blog/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: 1.2 KB
Line 
1@model PostgreSqlDotnetCore.Models.BlogPostConsultation
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>BlogPostConsultation</h4>
12 <hr />
13 <dl class="dl-horizontal">
14 <dt>
15 @Html.DisplayNameFor(model => model.date_askes)
16 </dt>
17
18 <dd>
19 @Html.DisplayFor(model => model.date_askes)
20 </dd>
21 <dt>
22 @Html.DisplayNameFor(model => model.title)
23 </dt>
24
25 <dd>
26 @Html.DisplayFor(model => model.title)
27 </dd>
28
29 <dt>
30 @Html.DisplayNameFor(model => model.description)
31 </dt>
32
33 <dd>
34 @Html.DisplayFor(model => model.description)
35 </dd>
36 <dt>
37 @Html.DisplayNameFor(model => model.users_id)
38 </dt>
39
40 <dd>
41 @Html.DisplayFor(model => model.users_id)
42 </dd>
43
44
45 </dl>
46
47 @using (Html.BeginForm()) {
48 @Html.AntiForgeryToken()
49
50 <div class="form-actions no-color">
51 <input type="submit" value="Delete" class="btn btn-default" /> |
52 @Html.ActionLink("Back to List", "Index")
53 </div>
54 }
55</div>
Note: See TracBrowser for help on using the repository browser.