diff options
Diffstat (limited to 'template/en')
-rw-r--r-- | template/en/default/admin/users/edit.html.tmpl | 1 | ||||
-rw-r--r-- | template/en/default/admin/users/userdata.html.tmpl | 8 | ||||
-rw-r--r-- | template/en/default/global/textarea.html.tmpl | 3 |
3 files changed, 11 insertions, 1 deletions
diff --git a/template/en/default/admin/users/edit.html.tmpl b/template/en/default/admin/users/edit.html.tmpl index 3efa4b8bf..d684dcebd 100644 --- a/template/en/default/admin/users/edit.html.tmpl +++ b/template/en/default/admin/users/edit.html.tmpl @@ -31,6 +31,7 @@ message = message style_urls = ['skins/standard/admin.css', 'skins/standard/editusers.css'] doc_section = "useradmin.html#modifyusers" + javascript_urls = [ 'js/field.js' ] %] [% PROCESS admin/users/listselectvars.html.tmpl diff --git a/template/en/default/admin/users/userdata.html.tmpl b/template/en/default/admin/users/userdata.html.tmpl index f3f0e5aa9..3315d87da 100644 --- a/template/en/default/admin/users/userdata.html.tmpl +++ b/template/en/default/admin/users/userdata.html.tmpl @@ -20,6 +20,10 @@ # otheruser: Bugzilla::User object of user to edit #%] +<script type="text/javascript"> + var disable_mail_manually_set = [% (otheruser.email_disabled ? 1 : 0) FILTER js %]; +</script> + <tr> <th><label for="login">Login name:</label></th> <td> @@ -86,7 +90,8 @@ <th><label for="disable_mail">[% terms.Bug %]mail Disabled:</label></th> <td> <input type="checkbox" name="disable_mail" id="disable_mail" value="1" - [% IF otheruser.email_disabled %] checked="checked" [% END %] /> + [% IF otheruser.email_disabled %] checked="checked" [% END %] + onchange="disable_mail_manually_set=1;"> (This affects [% terms.bug %]mail and whinemail, not password-reset or other non-[% terms.bug %]-related emails) </td> @@ -102,6 +107,7 @@ defaultrows = 10 cols = 60 defaultcontent = otheruser.disabledtext + onchange = "userDisabledTextOnChange(this);" %]<br> (If non-empty, then the account will be disabled, and this text should explain why.) diff --git a/template/en/default/global/textarea.html.tmpl b/template/en/default/global/textarea.html.tmpl index c158615bd..84aacf2ee 100644 --- a/template/en/default/global/textarea.html.tmpl +++ b/template/en/default/global/textarea.html.tmpl @@ -53,4 +53,7 @@ [% END %] [% IF mandatory %] aria-required="true" + [% END %] + [% IF onchange %] + onchange="[% onchange FILTER html %]" [% END %]>[% defaultcontent FILTER html %]</textarea> |