diff options
Diffstat (limited to 'templates/user_index.php')
-rw-r--r-- | templates/user_index.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/templates/user_index.php b/templates/user_index.php index fc15ae44..f6302a6b 100644 --- a/templates/user_index.php +++ b/templates/user_index.php @@ -14,6 +14,8 @@ <table> <tr> <th><?= t('Username') ?></th> + <th><?= t('Name') ?></th> + <th><?= t('Email') ?></th> <th><?= t('Administrator') ?></th> <th><?= t('Default Project') ?></th> <th><?= t('Actions') ?></th> @@ -24,6 +26,12 @@ <span title="user_id=<?= $user['id'] ?>"><?= Helper\escape($user['username']) ?></span> </td> <td> + <?= Helper\escape($user['name']) ?> + </td> + <td> + <?= Helper\escape($user['email']) ?> + </td> + <td> <?= $user['is_admin'] ? t('Yes') : t('No') ?> </td> <td> |