diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-04-11 18:04:33 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-04-11 18:04:33 -0400 |
commit | b8c4afec789c2953d5a31c70f5793ade4e8bcf03 (patch) | |
tree | e5441c534a8aa0919df7829635e5ef4da7507e04 /app/Template | |
parent | ba0836f0c469e6baf4a78f97b1198b93d4b0f720 (diff) | |
parent | a54f19424e7eceb0701a13e4742ec21a69ea111f (diff) |
Merge pull-request #2112
Diffstat (limited to 'app/Template')
-rw-r--r-- | app/Template/user/index.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/Template/user/index.php b/app/Template/user/index.php index 364fd965..9526b2ec 100644 --- a/app/Template/user/index.php +++ b/app/Template/user/index.php @@ -14,6 +14,7 @@ <?php else: ?> <table class="table-stripped"> <tr> + <th class="column-5"><?= $paginator->order(t('ID'), 'id') ?></th> <th class="column-18"><?= $paginator->order(t('Username'), 'username') ?></th> <th class="column-18"><?= $paginator->order(t('Name'), 'name') ?></th> <th class="column-15"><?= $paginator->order(t('Email'), 'email') ?></th> @@ -26,7 +27,9 @@ <?php foreach ($paginator->getCollection() as $user): ?> <tr> <td> - <?= '#'.$user['id'] ?> + <?= '#'.$user['id'] ?> + </td> + <td> <?= $this->url->link($this->text->e($user['username']), 'user', 'show', array('user_id' => $user['id'])) ?> </td> <td> |