summaryrefslogtreecommitdiffstats
path: root/extensions/UserProfile
diff options
context:
space:
mode:
authorByron Jones <glob@mozilla.com>2014-04-28 10:34:52 +0200
committerByron Jones <glob@mozilla.com>2014-04-28 10:34:52 +0200
commit40d80bae28d53965a0abc38ca465c8c986ad0aa3 (patch)
tree2cd25c583371cd4e8f99d7c2ab780a0fe8ba9644 /extensions/UserProfile
parent3730b93cd097094fad46369cffea2a39309cd806 (diff)
downloadbugzilla-40d80bae28d53965a0abc38ca465c8c986ad0aa3.tar.gz
bugzilla-40d80bae28d53965a0abc38ca465c8c986ad0aa3.tar.xz
Bug 1002375: show if an account is disabled on the user profile
Diffstat (limited to 'extensions/UserProfile')
-rw-r--r--extensions/UserProfile/template/en/default/pages/user_profile.html.tmpl5
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 %]