summaryrefslogtreecommitdiff
path: root/app/Template/group/users.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2017-02-14 22:09:29 -0500
committerFrederic Guillot <fred@kanboard.net>2017-02-14 22:09:29 -0500
commita559dc0be739d6ff18749c17135ce3c403575171 (patch)
tree0a3396bcf283a616654e365e9dafc7a27c647df7 /app/Template/group/users.php
parentf618f228d7aabf5b2c466b87f09f3ec5b4a44abe (diff)
Use contextual menu instead of action column in users management
Diffstat (limited to 'app/Template/group/users.php')
-rw-r--r--app/Template/group/users.php18
1 files changed, 12 insertions, 6 deletions
diff --git a/app/Template/group/users.php b/app/Template/group/users.php
index ef179674..268f28de 100644
--- a/app/Template/group/users.php
+++ b/app/Template/group/users.php
@@ -10,16 +10,25 @@
<?php else: ?>
<table class="table-striped table-scrolling">
<tr>
- <th><?= $paginator->order(t('Id'), 'id') ?></th>
+ <th class="column-5"><?= $paginator->order(t('Id'), 'id') ?></th>
<th><?= $paginator->order(t('Username'), 'username') ?></th>
<th><?= $paginator->order(t('Name'), 'name') ?></th>
<th><?= $paginator->order(t('Email'), 'email') ?></th>
- <th><?= t('Actions') ?></th>
</tr>
<?php foreach ($paginator->getCollection() as $user): ?>
<tr>
<td>
- <?= $this->url->link('#'.$user['id'], 'UserViewController', 'show', array('user_id' => $user['id'])) ?>
+ <div class="dropdown">
+ <a href="#" class="dropdown-menu dropdown-menu-link-icon"><?= '#'.$user['id'] ?> <i class="fa fa-caret-down"></i></a>
+ <ul>
+ <li>
+ <?= $this->url->icon('user', t('View profile'), 'UserViewController', 'show', array('user_id' => $user['id'])) ?>
+ </li>
+ <li>
+ <?= $this->modal->confirm('trash-o', t('Remove this user from group'), 'GroupListController', 'dissociate', array('group_id' => $group['id'], 'user_id' => $user['id'])) ?>
+ </li>
+ </ul>
+ </div>
</td>
<td>
<?= $this->url->link($this->text->e($user['username']), 'UserViewController', 'show', array('user_id' => $user['id'])) ?>
@@ -30,9 +39,6 @@
<td>
<a href="mailto:<?= $this->text->e($user['email']) ?>"><?= $this->text->e($user['email']) ?></a>
</td>
- <td>
- <?= $this->modal->confirm('trash-o', t('Remove this user'), 'GroupListController', 'dissociate', array('group_id' => $group['id'], 'user_id' => $user['id'])) ?>
- </td>
</tr>
<?php endforeach ?>
</table>