@model GreenTree.Strohrmann.ERP.Web.Models.Rights.User.UserModel @{ ViewData["Title"] = "Benutzeranzeige"; }

Benutzeranzeige

@Model.Lastname, @Model.Forename


@Html.DisplayNameFor(model => model.Id)
@Html.DisplayFor(model => model.Id)
@Html.DisplayNameFor(model => model.Accountname)
@Html.DisplayFor(model => model.Accountname)
@Html.DisplayNameFor(model => model.Forename)
@Html.DisplayFor(model => model.Forename)
@Html.DisplayNameFor(model => model.Lastname)
@Html.DisplayFor(model => model.Lastname)
@Html.DisplayNameFor(model => model.Birthdate)
@Html.DisplayFor(model => model.Birthdate)
@Html.DisplayNameFor(model => model.Activated)
@Html.YesNoBadgeFor(model => model.Activated)
@Html.DisplayNameFor(model => model.Policies)
@Html.TokenBoxFor(model => model.Policies)
@Html.ActionLink("Bearbeiten", "Edit", new { id = Model.Id }) | Zurück zur Liste
@section Scripts { @{ await Html.RenderPartialAsync("_TokenBoxLibPartial"); } }