main
Last change
on this file since 784b3ad was 2aea0fd, checked in by ElenaMoskova <elena.moskova99@…>, 4 months ago |
init commit Elena
|
-
Property mode
set to
100644
|
File size:
1.3 KB
|
Rev | Line | |
---|
[2aea0fd] | 1 | @model PostgreSqlDotnetCore.Models.PetsClass
|
---|
| 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>PetsClass</h4>
|
---|
| 12 | <hr />
|
---|
| 13 | <dl class="dl-horizontal">
|
---|
| 14 | <dt>
|
---|
| 15 | @Html.DisplayNameFor(model => model.color)
|
---|
| 16 | </dt>
|
---|
| 17 |
|
---|
| 18 | <dd>
|
---|
| 19 | @Html.DisplayFor(model => model.color)
|
---|
| 20 | </dd>
|
---|
| 21 | <dt>
|
---|
| 22 | @Html.DisplayNameFor(model => model.description)
|
---|
| 23 | </dt>
|
---|
| 24 |
|
---|
| 25 | <dd>
|
---|
| 26 | @Html.DisplayFor(model => model.description)
|
---|
| 27 | </dd>
|
---|
| 28 | <dt>
|
---|
| 29 | @Html.DisplayNameFor(model => model.dateofbirthday)
|
---|
| 30 | </dt>
|
---|
| 31 |
|
---|
| 32 | <dd>
|
---|
| 33 | @Html.DisplayFor(model => model.dateofbirthday)
|
---|
| 34 | </dd>
|
---|
| 35 | <dt>
|
---|
| 36 | @Html.DisplayNameFor(model => model.usersid)
|
---|
| 37 | </dt>
|
---|
| 38 |
|
---|
| 39 | <dd>
|
---|
| 40 | @Html.DisplayFor(model => model.usersid)
|
---|
| 41 | </dd>
|
---|
| 42 | <dt>
|
---|
| 43 | @Html.DisplayNameFor(model => model.typeofpetsid)
|
---|
| 44 | </dt>
|
---|
| 45 |
|
---|
| 46 | <dd>
|
---|
| 47 | @Html.DisplayFor(model => model.typeofpetsid)
|
---|
| 48 | </dd>
|
---|
| 49 | </dl>
|
---|
| 50 |
|
---|
| 51 | @using (Html.BeginForm()) {
|
---|
| 52 | @Html.AntiForgeryToken()
|
---|
| 53 |
|
---|
| 54 | <div class="form-actions no-color">
|
---|
| 55 | <input type="submit" value="Delete" class="btn btn-dark" /> |
|
---|
| 56 | @Html.ActionLink("Back to List", "Index")
|
---|
| 57 | </div>
|
---|
| 58 | }
|
---|
| 59 | </div>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.