summaryrefslogtreecommitdiffstats
path: root/settings/templates/users/part.userlist.php
diff options
context:
space:
mode:
Diffstat (limited to 'settings/templates/users/part.userlist.php')
-rw-r--r--settings/templates/users/part.userlist.php18
1 files changed, 16 insertions, 2 deletions
diff --git a/settings/templates/users/part.userlist.php b/settings/templates/users/part.userlist.php
index 7e7e1561e2f..b908109ad2d 100644
--- a/settings/templates/users/part.userlist.php
+++ b/settings/templates/users/part.userlist.php
@@ -14,7 +14,7 @@
<th class="storageLocation" scope="col"><?php p($l->t('Storage location')); ?></th>
<th class="userBackend" scope="col"><?php p($l->t('User backend')); ?></th>
<th class="lastLogin" scope="col"><?php p($l->t('Last login')); ?></th>
- <th id="headerRemove">&nbsp;</th>
+ <th class="userActions"></th>
</tr>
</thead>
<tbody>
@@ -63,7 +63,21 @@
<td class="storageLocation"></td>
<td class="userBackend"></td>
<td class="lastLogin"></td>
- <td class="remove"></td>
+ <td class="userActions"><span></span>
+ <div class="popovermenu bubble open menu">
+ <ul class="userActionsMenu">
+ <li>
+ <a href="#" class="menuitem action-togglestate permanent" data-action="togglestate"></a>
+ </li>
+ <li>
+ <a href="#" class="menuitem action-remove permanent" data-action="remove">
+ <span class="icon icon-delete"></span>
+ <span><?php p($l->t('Delete')); ?></span>
+ </a>
+ </li>
+ </ul>
+ </div>
+ </td>
</tr>
</tbody>
</table>
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196