summaryrefslogtreecommitdiffstats
path: root/settings/templates
diff options
context:
space:
mode:
authorStephane V <stephane@vergeylen.eu>2014-07-16 22:23:15 +0200
committerJan-Christoph Borchardt <hey@jancborchardt.net>2014-08-28 23:45:21 +0200
commitc7c54d93618d456ce6e53ee35b4280097cc3f54c (patch)
tree23883e7b2ad0201d0a707430e707db95da79e1b1 /settings/templates
parent54eb2f42df3c0e4684f0cbd29e507b99a5cfeb8f (diff)
downloadnextcloud-server-c7c54d93618d456ce6e53ee35b4280097cc3f54c.tar.gz
nextcloud-server-c7c54d93618d456ce6e53ee35b4280097cc3f54c.zip
Adds 2 checkboxes at the top of userlist in the settings, to display/hide optional columns
This fixes #9367.
Diffstat (limited to 'settings/templates')
-rw-r--r--settings/templates/users/part.createuser.php13
1 files changed, 12 insertions, 1 deletions
diff --git a/settings/templates/users/part.createuser.php b/settings/templates/users/part.createuser.php
index 3dfd27ee52d..70e5a237610 100644
--- a/settings/templates/users/part.createuser.php
+++ b/settings/templates/users/part.createuser.php
@@ -28,7 +28,18 @@
alt="<?php p($l->t('Enter the recovery password in order to recover the users files during password change'))?>"/>
</div>
<?php endif; ?>
+
+ <form id="userlistoptions">
+ <?php p($l->t('Display')) ?> :
+ <label><input type="checkbox" name="StorageLocation" value="StorageLocation" id="CheckboxStorageLocation">
+ <?php p($l->t('Location')) ?>
+ </label>
+ <label><input type="checkbox" name="LastLogin" value="LastLogin" id="CheckboxLastLogin">
+ <?php p($l->t('Last login')) ?>
+ </label>
+ </form>
+
<form autocomplete="off" id="usersearchform">
<input type="text" class="input userFilter" placeholder="<?php p($l->t('Search Users and Groups')); ?>" />
</form>
-</div> \ No newline at end of file
+</div>