59 lines
1.1 KiB
Plaintext
59 lines
1.1 KiB
Plaintext
@model test.Models.User
|
|
|
|
@{
|
|
ViewBag.Title = "Details";
|
|
}
|
|
|
|
<h2>Details</h2>
|
|
|
|
<div>
|
|
<h4>User</h4>
|
|
<hr />
|
|
<dl class="dl-horizontal">
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.User_Name)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.User_Name)
|
|
</dd>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.User_LastName)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.User_LastName)
|
|
</dd>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.User_PhoneNumber)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.User_PhoneNumber)
|
|
</dd>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.User_Password)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.User_Password)
|
|
</dd>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.User_Status)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.User_Status)
|
|
</dd>
|
|
|
|
</dl>
|
|
</div>
|
|
<p>
|
|
@Html.ActionLink("Edit", "Edit", new { id = Model.User_ID }) |
|
|
@Html.ActionLink("Back to List", "Index")
|
|
</p>
|