diff options
author | Frédéric Guillot <fguillot@users.noreply.github.com> | 2014-05-03 22:24:03 -0400 |
---|---|---|
committer | Frédéric Guillot <fguillot@users.noreply.github.com> | 2014-05-03 22:24:03 -0400 |
commit | 560a12f0bd6347a335f8ed5201d6d9562d03d4bc (patch) | |
tree | 00510d25c1cf5e747573543fa88d44ef003b1c9a /templates/user_index.php | |
parent | 9531e439cd99fb7dbcfb039f422f1d1ba414ec30 (diff) |
Add Google authentication
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> |