main
Last change
on this file since ae6c071 was 2aea0fd, checked in by ElenaMoskova <elena.moskova99@…>, 4 months ago |
init commit Elena
|
-
Property mode
set to
100644
|
File size:
1.8 KB
|
Line | |
---|
1 | @model PostgreSqlDotnetCore.Models.VetCenter
|
---|
2 |
|
---|
3 | @{
|
---|
4 | ViewBag.Title = "Delete";
|
---|
5 | }
|
---|
6 |
|
---|
7 | <h2>Delete</h2>
|
---|
8 |
|
---|
9 | <h3>Are you sure you want to delete this VetCenter?</h3>
|
---|
10 | <div>
|
---|
11 | <h4>VetCenter</h4>
|
---|
12 | <hr />
|
---|
13 | <dl class="dl-horizontal">
|
---|
14 | <dt>
|
---|
15 | @Html.DisplayNameFor(model => model.name)
|
---|
16 | </dt>
|
---|
17 |
|
---|
18 | <dd>
|
---|
19 | @Html.DisplayFor(model => model.name)
|
---|
20 | </dd>
|
---|
21 | <dt>
|
---|
22 | @Html.DisplayNameFor(model => model.adress)
|
---|
23 | </dt>
|
---|
24 |
|
---|
25 | <dd>
|
---|
26 | @Html.DisplayFor(model => model.adress)
|
---|
27 | </dd>
|
---|
28 | <dt>
|
---|
29 | @Html.DisplayNameFor(model => model.description)
|
---|
30 | </dt>
|
---|
31 |
|
---|
32 | <dd>
|
---|
33 | @Html.DisplayFor(model => model.description)
|
---|
34 | </dd>
|
---|
35 | <dt>
|
---|
36 | @Html.DisplayNameFor(model => model.workinghours)
|
---|
37 | </dt>
|
---|
38 |
|
---|
39 | <dd>
|
---|
40 | @Html.DisplayFor(model => model.workinghours)
|
---|
41 | </dd>
|
---|
42 | <dt>
|
---|
43 | @Html.DisplayNameFor(model => model.phonenumber)
|
---|
44 | </dt>
|
---|
45 |
|
---|
46 | <dd>
|
---|
47 | @Html.DisplayFor(model => model.phonenumber)
|
---|
48 | </dd>
|
---|
49 | <dt>
|
---|
50 | @Html.DisplayNameFor(model => model.latitude)
|
---|
51 | </dt>
|
---|
52 |
|
---|
53 | <dd>
|
---|
54 | @Html.DisplayFor(model => model.latitude)
|
---|
55 | </dd>
|
---|
56 | <dt>
|
---|
57 | @Html.DisplayNameFor(model => model.longitude)
|
---|
58 | </dt>
|
---|
59 |
|
---|
60 | <dd>
|
---|
61 | @Html.DisplayFor(model => model.longitude)
|
---|
62 | </dd>
|
---|
63 | <dt>
|
---|
64 | @Html.DisplayNameFor(model => model.citiesid)
|
---|
65 | </dt>
|
---|
66 |
|
---|
67 | <dd>
|
---|
68 | @Html.DisplayFor(model => model.citiesid)
|
---|
69 | </dd>
|
---|
70 |
|
---|
71 |
|
---|
72 |
|
---|
73 |
|
---|
74 | </dl>
|
---|
75 |
|
---|
76 | @using (Html.BeginForm()) {
|
---|
77 | @Html.AntiForgeryToken()
|
---|
78 |
|
---|
79 | <div class="form-actions no-color">
|
---|
80 | <input type="submit" value="Delete" class="btn btn-default" /> |
|
---|
81 | @Html.ActionLink("Back to List", "Index")
|
---|
82 | </div>
|
---|
83 | }
|
---|
84 | </div>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.