@page "/UserAdmin" @if (ShowPopup) { } @if (isLoading) { } else {

User Administration

@if (@context.User.IsInRole("SuperAdmin") || @context.User.IsInRole("DcaAdmin")) { } else { }
@foreach (var user in UsersList) { }
Id User / Email Role Rights
@if (!ShowPopup) { } else { } @user.Identity.Id.Substring(0, 8)... @if (user.Identity.EmailConfirmed) { } else { }  @user.Identity.Email @ShowRoles(user.Roles) @ShowClaims(user.Claims) @if (!ShowPopup) { if (user.isInactive) { } else { } } else { }
}