- @L["Last name"]
- @(profile.LastName ?? L["Not set"].Value)
- @L["First name"]
- @(profile.FirstName ?? L["Not set"].Value)
- @L["Nickname"]
- @(profile.NickName ?? L["Not set"].Value)
- @L["Email"]
-
@profile.Email
@(profile.EmailConfirmed ? L["Verified"] : L["Unverified"])
- @L["Date of birth"]
- @(profile.DateOfBirth?.ToString("yyyy/MM/dd") ?? L["Not set"].Value)
- @L["Mobile phone"]
- @(profile.MobilePhone ?? L["Not set"].Value)
- @L["Company name"]
- @(profile.CompanyName ?? L["Not set"].Value)
- @L["Job title"]
- @(profile.JobTitle ?? L["Not set"].Value)
- @L["Account status"]
- @(Model.IsDisabled ? L["Frozen"] : Model.IsBlacklisted ? L["Blacklist"] : L["Normal"])
- @L["Created"]
- @Model.CreatedAt.ToString("yyyy/MM/dd HH:mm")
- @L["Last login"]
- @(Model.LastLoginAt?.ToString("yyyy/MM/dd HH:mm") ?? "-")