@if (!string.IsNullOrWhiteSpace(Data.Description))
{
Email: @(Data.Email)
@if (!string.IsNullOrWhiteSpace(Data.Gender?.Name))
{
Gender: @(Data.Gender?.Name)
}
Joined: @(Data.JoinDate.LocalDateTime.ToShortDateString())
Last active: @(Data.ActiveDate.LocalDateTime.ToShortDateString())
@if (Data.IsAdmin)
{
Admin
}
@if (LoggedUserData is not null && Data.Id != LoggedUserData.Id)
{
}