@model TightWiki.Models.ViewModels.Admin.AccountsViewModel @using TightWiki.Library @using TightWiki.Models @{ Layout = "/Views/Shared/_Layout.cshtml"; var sessionState = ViewData["SessionState"] as TightWiki.SessionState ?? throw new Exception("Wiki State Context cannot be null."); }

账号



@if (!string.IsNullOrEmpty(Model.ErrorMessage)) {
@Html.Raw(Model.ErrorMessage)
} @if (!string.IsNullOrEmpty(Model.SuccessMessage)) {
@Html.Raw(Model.SuccessMessage)
} 新增

@using (Html.BeginForm(null, null, FormMethod.Get, new { action = $"{GlobalConfiguration.BasePath}{Context.Request.Path}" })) {
@Html.TextBoxFor(x => x.SearchString, new { @class = "form-control" })
@if (Model.Users.Count > 0) { @foreach (var user in Model.Users) { }
账号 国家 时区 Email 创建时间
@user.AccountName @user.FirstName @user.LastName @user.Country @user.TimeZone @user.EmailAddress @Html.Raw(((user.EmailConfirmed == true) ? "✓" : "")) @user.CreatedDate
@Html.Raw(TightWiki.Library.PageSelectorGenerator.Generate(Context.Request.QueryString, Model.PaginationPageCount)) } else {
暂无数据
} }
新增