{ totalRecords, plural, =0 {No users} =1 {1 user} other {{{ totalRecords | myNumberFormatter }} users}} Create user @if (table.isColumnDisplayed('username')) {
{{ user.account.displayName }} {{ user.username }}
@if (user.accountMutedStatus.mutedByInstance) {
Muted
} @if (user.blocked) {
Banned
} } @if (table.isColumnDisplayed('role')) { @if (user.blocked) { {{ user.role.label }} } @else { {{ user.role.label }} } } @if (table.isColumnDisplayed('email')) { } @if (table.isColumnDisplayed('videoQuotaUsed')) { } @if (table.isColumnDisplayed('videoQuotaDailyUsed')) { } @if (table.isColumnDisplayed('totalVideoFileSize')) { {{ user.totalVideoFileSize | bytes }} } @if (table.isColumnDisplayed('twoFactorEnabled')) { @if (user.twoFactorEnabled) { 2FA } } @if (table.isColumnDisplayed('pluginAuth')) { @if (user.pluginAuth) { {{ user.pluginAuth.replace('peertube-plugin-', '') }} } } @if (table.isColumnDisplayed('createdAt')) { {{ user.createdAt | ptDate: 'short' }} } @if (table.isColumnDisplayed('lastLoginDate')) { @if (user.lastLoginDate) { {{ user.lastLoginDate | ptDate: 'short' }} } @else { never } }
Ban reason: {{ user.blockedReason }}