main
Rev | Line | |
---|
[2aea0fd] | 1 | @model PostgreSqlDotnetCore.Models.PetsClass
|
---|
| 2 |
|
---|
| 3 | @{
|
---|
| 4 | ViewBag.Title = "Details";
|
---|
| 5 | }
|
---|
| 6 |
|
---|
| 7 | <h2>Details</h2>
|
---|
| 8 |
|
---|
| 9 | <div>
|
---|
| 10 | <h4>PetsClass</h4>
|
---|
| 11 | <hr />
|
---|
| 12 | <dl class="dl-horizontal">
|
---|
[8f8226c] | 13 | <dt>
|
---|
| 14 | @Html.DisplayNameFor(model => model.name)
|
---|
| 15 | </dt>
|
---|
| 16 |
|
---|
| 17 | <dd>
|
---|
| 18 | @Html.DisplayFor(model => model.name)
|
---|
| 19 | </dd>
|
---|
[2aea0fd] | 20 | <dt>
|
---|
| 21 | @Html.DisplayNameFor(model => model.color)
|
---|
| 22 | </dt>
|
---|
| 23 |
|
---|
| 24 | <dd>
|
---|
| 25 | @Html.DisplayFor(model => model.color)
|
---|
| 26 | </dd>
|
---|
| 27 | <dt>
|
---|
| 28 | @Html.DisplayNameFor(model => model.description)
|
---|
| 29 | </dt>
|
---|
| 30 |
|
---|
| 31 | <dd>
|
---|
| 32 | @Html.DisplayFor(model => model.description)
|
---|
| 33 | </dd>
|
---|
| 34 | <dt>
|
---|
| 35 | @Html.DisplayNameFor(model => model.dateofbirthday)
|
---|
| 36 | </dt>
|
---|
| 37 |
|
---|
| 38 | <dd>
|
---|
| 39 | @Html.DisplayFor(model => model.dateofbirthday)
|
---|
| 40 | </dd>
|
---|
| 41 | <dt>
|
---|
| 42 | @Html.DisplayNameFor(model => model.usersid)
|
---|
| 43 | </dt>
|
---|
| 44 |
|
---|
| 45 | <dd>
|
---|
| 46 | @Html.DisplayFor(model => model.usersid)
|
---|
| 47 | </dd>
|
---|
| 48 | <dt>
|
---|
| 49 | @Html.DisplayNameFor(model => model.typeofpetsid)
|
---|
| 50 | </dt>
|
---|
| 51 |
|
---|
| 52 | <dd>
|
---|
| 53 | @Html.DisplayFor(model => model.typeofpetsid)
|
---|
| 54 | </dd>
|
---|
| 55 |
|
---|
| 56 |
|
---|
| 57 | </dl>
|
---|
| 58 | </div>
|
---|
| 59 | <p>
|
---|
| 60 | @Html.ActionLink("Edit", "Edit", new { id = Model.id }) |
|
---|
| 61 | @Html.ActionLink("Back to List", "Index")
|
---|
| 62 | </p>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.