yavsc/Yavsc/Views/Users/Details.cshtml

133 lines
3.6 KiB
Plaintext

@model Yavsc.Models.ApplicationUser
@{
ViewData["Title"] = "Details";
}
<h2>Details</h2>
<div>
<h4>ApplicationUser</h4>
<hr />
<dl class="dl-horizontal">
<dt>
@Html.DisplayNameFor(model => model.AccessFailedCount)
</dt>
<dd>
@Html.DisplayFor(model => model.AccessFailedCount)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Avatar)
</dt>
<dd>
@Html.DisplayFor(model => model.Avatar)
</dd>
<dt>
@Html.DisplayNameFor(model => model.ConcurrencyStamp)
</dt>
<dd>
@Html.DisplayFor(model => model.ConcurrencyStamp)
</dd>
<dt>
@Html.DisplayNameFor(model => model.DedicatedGoogleCalendar)
</dt>
<dd>
@Html.DisplayFor(model => model.DedicatedGoogleCalendar)
</dd>
<dt>
@Html.DisplayNameFor(model => model.DiskQuota)
</dt>
<dd>
@Html.DisplayFor(model => model.DiskQuota)
</dd>
<dt>
@Html.DisplayNameFor(model => model.DiskUsage)
</dt>
<dd>
@Html.DisplayFor(model => model.DiskUsage)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Email)
</dt>
<dd>
@Html.DisplayFor(model => model.Email)
</dd>
<dt>
@Html.DisplayNameFor(model => model.EmailConfirmed)
</dt>
<dd>
@Html.DisplayFor(model => model.EmailConfirmed)
</dd>
<dt>
@Html.DisplayNameFor(model => model.FullName)
</dt>
<dd>
@Html.DisplayFor(model => model.FullName)
</dd>
<dt>
@Html.DisplayNameFor(model => model.LockoutEnabled)
</dt>
<dd>
@Html.DisplayFor(model => model.LockoutEnabled)
</dd>
<dt>
@Html.DisplayNameFor(model => model.LockoutEnd)
</dt>
<dd>
@Html.DisplayFor(model => model.LockoutEnd)
</dd>
<dt>
@Html.DisplayNameFor(model => model.NormalizedEmail)
</dt>
<dd>
@Html.DisplayFor(model => model.NormalizedEmail)
</dd>
<dt>
@Html.DisplayNameFor(model => model.NormalizedUserName)
</dt>
<dd>
@Html.DisplayFor(model => model.NormalizedUserName)
</dd>
<dt>
@Html.DisplayNameFor(model => model.PasswordHash)
</dt>
<dd>
@Html.DisplayFor(model => model.PasswordHash)
</dd>
<dt>
@Html.DisplayNameFor(model => model.PhoneNumber)
</dt>
<dd>
@Html.DisplayFor(model => model.PhoneNumber)
</dd>
<dt>
@Html.DisplayNameFor(model => model.PhoneNumberConfirmed)
</dt>
<dd>
@Html.DisplayFor(model => model.PhoneNumberConfirmed)
</dd>
<dt>
@Html.DisplayNameFor(model => model.SecurityStamp)
</dt>
<dd>
@Html.DisplayFor(model => model.SecurityStamp)
</dd>
<dt>
@Html.DisplayNameFor(model => model.TwoFactorEnabled)
</dt>
<dd>
@Html.DisplayFor(model => model.TwoFactorEnabled)
</dd>
<dt>
@Html.DisplayNameFor(model => model.UserName)
</dt>
<dd>
@Html.DisplayFor(model => model.UserName)
</dd>
</dl>
</div>
<p>
<a asp-action="Edit" asp-route-id="@Model.Id">Edit</a> |
<a asp-action="Index">Back to List</a>
</p>