diff options
author | Byron Jones <glob@mozilla.com> | 2014-04-28 10:34:52 +0200 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2014-04-28 10:34:52 +0200 |
commit | 40d80bae28d53965a0abc38ca465c8c986ad0aa3 (patch) | |
tree | 2cd25c583371cd4e8f99d7c2ab780a0fe8ba9644 /extensions | |
parent | 3730b93cd097094fad46369cffea2a39309cd806 (diff) | |
download | bugzilla-40d80bae28d53965a0abc38ca465c8c986ad0aa3.tar.gz bugzilla-40d80bae28d53965a0abc38ca465c8c986ad0aa3.tar.xz |
Bug 1002375: show if an account is disabled on the user profile
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/UserProfile/template/en/default/pages/user_profile.html.tmpl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/extensions/UserProfile/template/en/default/pages/user_profile.html.tmpl b/extensions/UserProfile/template/en/default/pages/user_profile.html.tmpl index dc5696c88..a8760d96e 100644 --- a/extensions/UserProfile/template/en/default/pages/user_profile.html.tmpl +++ b/extensions/UserProfile/template/en/default/pages/user_profile.html.tmpl @@ -68,7 +68,10 @@ [% IF user.id %] <tr> <th>Email</th> - <td colspan="2"><a href="mailto:[% target.login FILTER uri %]">[% target.login FILTER html %]</a></td> + <td colspan="2"> + <a href="mailto:[% target.login FILTER uri %]">[% target.login FILTER html %]</a> + [% " (disabled)" UNLESS target.enabled %] + </td> </tr> [% END %] |