source: PostgreSqlDotnetCore/Views/Customer/Details.cshtml@ e9bb9d1

main
Last change on this file since e9bb9d1 was 2aea0fd, checked in by ElenaMoskova <elena.moskova99@…>, 2 months ago

init commit Elena

  • Property mode set to 100644
File size: 1.2 KB
Line 
1@model PostgreSqlDotnetCore.Models.UsersClass
2
3@{
4 ViewBag.Title = "Details";
5}
6
7<h2>Details</h2>
8
9<div>
10 <h4>CustomerClass</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.lastname)
23 </dt>
24 <dd>
25 @Html.DisplayFor(model => model.lastname)
26 </dd>
27
28 <dt>
29 @Html.DisplayNameFor(model => model.email)
30 </dt>
31
32 <dd>
33 @Html.DisplayFor(model => model.email)
34 </dd>
35
36 <dt>
37 @Html.DisplayNameFor(model => model.password)
38 </dt>
39
40 <dd>
41 @Html.DisplayFor(model => model.password)
42 </dd>
43
44 <dt>
45 @Html.DisplayNameFor(model => model.number)
46 </dt>
47
48 <dd>
49 @Html.DisplayFor(model => model.number)
50 </dd>
51
52 </dl>
53</div>
54<p>
55 @{
56 if (Model != null)
57 {
58 Html.ActionLink("Edit", "Edit", new { id = Model.id });
59
60 } else
61 {
62 <b>NO ACCESS</b>
63 }
64 }
65 @Html.ActionLink("Back to List", "Index")
66</p>
Note: See TracBrowser for help on using the repository browser.