diff options
Diffstat (limited to 'admin/templates/users.php')
-rw-r--r-- | admin/templates/users.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/admin/templates/users.php b/admin/templates/users.php index 63f512d4432..166f78ed919 100644 --- a/admin/templates/users.php +++ b/admin/templates/users.php @@ -19,8 +19,11 @@ foreach($_["groups"] as $group){ <table data-groups="<?php echo implode(', ',$allGroups);?>"> <?php foreach($_["users"] as $user): ?> <tr data-uid="<?php echo $user["name"] ?>"> - <td class="select"><input type="checkbox"></input></td> <td class="name"><?php echo $user["name"]; ?></td> + <td class="password"> + <span>●●●●●●●</span> + <img class="svg" src="<?php echo image_path('core','actions/rename.svg')?>"/> + </td> <td class="groups"> <select data-username="<?php echo $user['name'] ;?>" data-user-groups="<?php echo $user['groups'] ;?>" data-placeholder="groups" title="<?php echo $l->t('Groups')?>" multiple="multiple"> <?php foreach($_["groups"] as $group): ?> |