diff options
author | Morris Jobke <hey@morrisjobke.de> | 2014-12-15 12:43:42 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2014-12-18 22:43:09 +0100 |
commit | 5913af8a72e384f8fee89501b3a297b70460c1e0 (patch) | |
tree | 7f329b47b84bc312952d66f8f86f3f7e66ae9476 /settings/templates | |
parent | 5327b8043019ec8f0cfe19d70794978570bba4bc (diff) | |
download | nextcloud-server-5913af8a72e384f8fee89501b3a297b70460c1e0.tar.gz nextcloud-server-5913af8a72e384f8fee89501b3a297b70460c1e0.zip |
Mail address of users is now changable in the user management
* introduced new route settings/users/{id}/mailAddress
* kept old responses
* better error messages
* dropped lostpassword.php from settings/ajax
* cleaned up the UserList.add() and hand in user object instead of
each attribute as another parameter
* check for change permission of mail address
* proper response messages
Diffstat (limited to 'settings/templates')
-rw-r--r-- | settings/templates/users/main.php | 8 | ||||
-rw-r--r-- | settings/templates/users/part.userlist.php | 5 |
2 files changed, 12 insertions, 1 deletions
diff --git a/settings/templates/users/main.php b/settings/templates/users/main.php index 2004c10b9ac..73552f8ad2e 100644 --- a/settings/templates/users/main.php +++ b/settings/templates/users/main.php @@ -65,7 +65,13 @@ translation('settings'); <p> <input type="checkbox" name="MailOnUserCreate" value="MailOnUserCreate" id="CheckboxMailOnUserCreate"> <label for="CheckboxMailOnUserCreate"> - <?php p($l->t('Send mail to new user')) ?> + <?php p($l->t('Send email to new user')) ?> + </label> + </p> + <p> + <input type="checkbox" name="EmailAddress" value="EmailAddress" id="CheckboxEmailAddress"> + <label for="CheckboxEmailAddress"> + <?php p($l->t('Show email address')) ?> </label> </p> </div> diff --git a/settings/templates/users/part.userlist.php b/settings/templates/users/part.userlist.php index 6a6b0b69fa2..4346920e43a 100644 --- a/settings/templates/users/part.userlist.php +++ b/settings/templates/users/part.userlist.php @@ -7,6 +7,7 @@ <th id='headerName'><?php p($l->t('Username'))?></th> <th id="headerDisplayName"><?php p($l->t( 'Full Name' )); ?></th> <th id="headerPassword"><?php p($l->t( 'Password' )); ?></th> + <th class="mailAddress"><?php p($l->t( 'Email' )); ?></th> <th id="headerGroups"><?php p($l->t( 'Groups' )); ?></th> <?php if(is_array($_['subadmins']) || $_['subadmins']): ?> <th id="headerSubAdmins"><?php p($l->t('Group Admin for')); ?></th> @@ -33,6 +34,10 @@ src="<?php print_unescaped(image_path('core', 'actions/rename.svg'))?>" alt="<?php p($l->t("set new password"))?>" title="<?php p($l->t("set new password"))?>"/> </td> + <td class="mailAddress"><span></span> <img class="svg action" + src="<?php p(image_path('core', 'actions/rename.svg'))?>" + alt="<?php p($l->t('change email address'))?>" title="<?php p($l->t('change email address'))?>"/> + </td> <td class="groups"></td> <?php if(is_array($_['subadmins']) || $_['subadmins']): ?> <td class="subadmins"></td> |