summaryrefslogtreecommitdiffstats
path: root/template
diff options
context:
space:
mode:
authorReed Loden <reed@reedloden.com>2010-07-06 02:44:13 +0200
committerReed Loden <reed@reedloden.com>2010-07-06 02:44:13 +0200
commit108eb83fae1e54f9746698246551e188dede26cb (patch)
treeda7596c3a7b9f33d7762c9865c9cc198f4feede4 /template
parentba4585ae8a1c63a49e40461d2e2efc12bc75c58a (diff)
downloadbugzilla-108eb83fae1e54f9746698246551e188dede26cb.tar.gz
bugzilla-108eb83fae1e54f9746698246551e188dede26cb.tar.xz
Bug 554964 - Show if a user is a "Default CC" under the Product Responsibilities section of editusers.cgi.
[r=mkanat a=mkanat]
Diffstat (limited to 'template')
-rw-r--r--template/en/default/admin/users/responsibilities.html.tmpl4
1 files changed, 4 insertions, 0 deletions
diff --git a/template/en/default/admin/users/responsibilities.html.tmpl b/template/en/default/admin/users/responsibilities.html.tmpl
index bbf121a26..5c9c3f317 100644
--- a/template/en/default/admin/users/responsibilities.html.tmpl
+++ b/template/en/default/admin/users/responsibilities.html.tmpl
@@ -29,6 +29,7 @@
<th>Component</th>
<th>Default Assignee</th>
<th>Default QA Contact</th>
+ <th>Default CC</th>
</tr>
[% FOREACH component = item.components %]
<tr>
@@ -48,6 +49,9 @@
[% component.$responsibility.id == otheruser.id ? "X" : "&nbsp;" %]
</td>
[% END %]
+ <td class="center">
+ [% component.initial_cc.contains(otheruser) ? "X" : "&nbsp;" %]
+ </td>
</tr>
[% END %]
</tbody>