main
Last change
on this file since 72b1da2 was 2aea0fd, checked in by ElenaMoskova <elena.moskova99@…>, 4 months ago |
init commit Elena
|
-
Property mode
set to
100644
|
File size:
655 bytes
|
Rev | Line | |
---|
[2aea0fd] | 1 | @model PostgreSqlDotnetCore.Models.BlogPostAnswers
|
---|
| 2 |
|
---|
| 3 | @{
|
---|
| 4 | ViewBag.Title = "Details";
|
---|
| 5 | }
|
---|
| 6 |
|
---|
| 7 | <h2>Details</h2>
|
---|
| 8 |
|
---|
| 9 | <div>
|
---|
| 10 | <h4>Blog_Post_Answers</h4>
|
---|
| 11 | <hr />
|
---|
| 12 | <dl class="dl-horizontal">
|
---|
| 13 | <dt>
|
---|
| 14 | @Html.DisplayNameFor(model => model.parent_id)
|
---|
| 15 | </dt>
|
---|
| 16 |
|
---|
| 17 | <dd>
|
---|
| 18 | @Html.DisplayFor(model => model.parent_id)
|
---|
| 19 | </dd>
|
---|
| 20 |
|
---|
| 21 | <dt>
|
---|
| 22 | @Html.DisplayNameFor(model => model.reply)
|
---|
| 23 | </dt>
|
---|
| 24 | <dd>
|
---|
| 25 | @Html.DisplayFor(model => model.reply)
|
---|
| 26 | </dd>
|
---|
| 27 |
|
---|
| 28 |
|
---|
| 29 | </dl>
|
---|
| 30 | </div>
|
---|
| 31 | <p>
|
---|
| 32 | @Html.ActionLink("Edit", "Edit", new { id = Model.id }) |
|
---|
| 33 | @Html.ActionLink("Back to List", "Index")
|
---|
| 34 | </p>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.