diff options
Diffstat (limited to 'app/Template/user/index.php')
-rw-r--r-- | app/Template/user/index.php | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/app/Template/user/index.php b/app/Template/user/index.php index edf043a6..d74aa748 100644 --- a/app/Template/user/index.php +++ b/app/Template/user/index.php @@ -18,9 +18,9 @@ <th><?= $paginator->order(t('Name'), 'name') ?></th> <th><?= $paginator->order(t('Email'), 'email') ?></th> <th><?= $paginator->order(t('Administrator'), 'is_admin') ?></th> + <th><?= $paginator->order(t('Project Administrator'), 'is_project_admin') ?></th> <th><?= $paginator->order(t('Two factor authentication'), 'twofactor_activated') ?></th> <th><?= $paginator->order(t('Notifications'), 'notifications_enabled') ?></th> - <th><?= t('External accounts') ?></th> <th><?= $paginator->order(t('Account type'), 'is_ldap_user') ?></th> </tr> <?php foreach ($paginator->getCollection() as $user): ?> @@ -41,6 +41,9 @@ <?= $user['is_admin'] ? t('Yes') : t('No') ?> </td> <td> + <?= $user['is_project_admin'] ? t('Yes') : t('No') ?> + </td> + <td> <?= $user['twofactor_activated'] ? t('Yes') : t('No') ?> </td> <td> @@ -51,16 +54,6 @@ <?php endif ?> </td> <td> - <ul class="no-bullet"> - <?php if ($user['google_id']): ?> - <li><i class="fa fa-google fa-fw"></i><?= t('Google account linked') ?></li> - <?php endif ?> - <?php if ($user['github_id']): ?> - <li><i class="fa fa-github fa-fw"></i><?= t('Github account linked') ?></li> - <?php endif ?> - </ul> - </td> - <td> <?= $user['is_ldap_user'] ? t('Remote') : t('Local') ?> </td> </tr> |