main
Last change
on this file since 2aea0fd 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.Pet_CaresClass
|
---|
| 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>Pet_CaresClass</h4>
|
---|
| 12 | <hr />
|
---|
| 13 | <dl class="dl-horizontal">
|
---|
| 14 | <dt>
|
---|
| 15 | @Html.DisplayNameFor(model => model.title)
|
---|
| 16 | </dt>
|
---|
| 17 | <dt>
|
---|
| 18 | @Html.DisplayNameFor(model => model.description)
|
---|
| 19 | </dt>
|
---|
| 20 | <dt>
|
---|
| 21 | @Html.DisplayNameFor(model => model.dateending)
|
---|
| 22 | </dt>
|
---|
| 23 | <dt>
|
---|
| 24 | @Html.DisplayNameFor(model => model.usersid)
|
---|
| 25 | </dt>
|
---|
| 26 | <dt>
|
---|
| 27 | @Html.DisplayNameFor(model => model.vetcentersid)
|
---|
| 28 | </dt>
|
---|
| 29 |
|
---|
| 30 |
|
---|
| 31 | <dd>
|
---|
| 32 | @Html.DisplayFor(model => model.title)
|
---|
| 33 | </dd>
|
---|
| 34 | <dd>
|
---|
| 35 | @Html.DisplayFor(model => model.description)
|
---|
| 36 | </dd>
|
---|
| 37 | <dd>
|
---|
| 38 | @Html.DisplayFor(model => model.dateending)
|
---|
| 39 | </dd>
|
---|
| 40 | <dd>
|
---|
| 41 | @Html.DisplayFor(model => model.usersid)
|
---|
| 42 | </dd>
|
---|
| 43 | <dd>
|
---|
| 44 | @Html.DisplayFor(model => model.vetcentersid)
|
---|
| 45 | </dd>
|
---|
| 46 |
|
---|
| 47 |
|
---|
| 48 | </dl>
|
---|
| 49 |
|
---|
| 50 | @using (Html.BeginForm()) {
|
---|
| 51 | @Html.AntiForgeryToken()
|
---|
| 52 |
|
---|
| 53 | <div class="form-actions no-color">
|
---|
| 54 | <input type="submit" value="Delete" class="btn btn-default" /> |
|
---|
| 55 | @Html.ActionLink("Back to List", "Index")
|
---|
| 56 | </div>
|
---|
| 57 | }
|
---|
| 58 | </div>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.