main
Last change
on this file since 118e414 was ae6c071, checked in by ElenaMoskova <elena.moskova99@…>, 3 months ago |
Аutomating the process
automating the process of updating the list of veterinary centers
|
-
Property mode
set to
100644
|
File size:
1.5 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>
|
---|
[ae6c071] | 23 | <dt>
|
---|
| 24 | @Html.DisplayNameFor(model => model.start_date)
|
---|
| 25 | </dt>
|
---|
[2aea0fd] | 26 | <dt>
|
---|
| 27 | @Html.DisplayNameFor(model => model.usersid)
|
---|
| 28 | </dt>
|
---|
| 29 | <dt>
|
---|
| 30 | @Html.DisplayNameFor(model => model.vetcentersid)
|
---|
| 31 | </dt>
|
---|
| 32 |
|
---|
| 33 |
|
---|
| 34 | <dd>
|
---|
| 35 | @Html.DisplayFor(model => model.title)
|
---|
| 36 | </dd>
|
---|
| 37 | <dd>
|
---|
| 38 | @Html.DisplayFor(model => model.description)
|
---|
| 39 | </dd>
|
---|
| 40 | <dd>
|
---|
| 41 | @Html.DisplayFor(model => model.dateending)
|
---|
| 42 | </dd>
|
---|
[ae6c071] | 43 | <dd>
|
---|
| 44 | @Html.DisplayFor(model => model.start_date)
|
---|
| 45 | </dd>
|
---|
[2aea0fd] | 46 | <dd>
|
---|
| 47 | @Html.DisplayFor(model => model.usersid)
|
---|
| 48 | </dd>
|
---|
| 49 | <dd>
|
---|
| 50 | @Html.DisplayFor(model => model.vetcentersid)
|
---|
| 51 | </dd>
|
---|
| 52 |
|
---|
| 53 |
|
---|
| 54 | </dl>
|
---|
| 55 |
|
---|
| 56 | @using (Html.BeginForm()) {
|
---|
| 57 | @Html.AntiForgeryToken()
|
---|
| 58 |
|
---|
| 59 | <div class="form-actions no-color">
|
---|
| 60 | <input type="submit" value="Delete" class="btn btn-default" /> |
|
---|
| 61 | @Html.ActionLink("Back to List", "Index")
|
---|
| 62 | </div>
|
---|
| 63 | }
|
---|
| 64 | </div>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.