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.6 KB
|
Rev | Line | |
---|
[2aea0fd] | 1 | @model PostgreSqlDotnetCore.Models.VetCenter
|
---|
| 2 |
|
---|
| 3 | @{
|
---|
| 4 | ViewBag.Title = "Details";
|
---|
| 5 | }
|
---|
| 6 |
|
---|
| 7 | <h2>Details</h2>
|
---|
| 8 |
|
---|
| 9 | <div>
|
---|
| 10 | <h4>VetCenter</h4>
|
---|
| 11 | <hr />
|
---|
| 12 | <dl class="dl-horizontal">
|
---|
| 13 | <dt>
|
---|
| 14 | @Html.DisplayNameFor(model => model.name)
|
---|
| 15 | </dt>
|
---|
| 16 |
|
---|
| 17 | <dd>
|
---|
| 18 | @Html.DisplayFor(model => model.name)
|
---|
| 19 | </dd>
|
---|
| 20 |
|
---|
| 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 | </dl>
|
---|
| 73 | </div>
|
---|
| 74 | <p>
|
---|
| 75 | @Html.ActionLink("Edit", "Edit", new { id = Model.id }) |
|
---|
| 76 | @Html.ActionLink("Back to List", "Index")
|
---|
| 77 | </p>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.