diff options
author | Reed Loden <reed@reedloden.com> | 2010-07-06 02:44:13 +0200 |
---|---|---|
committer | Reed Loden <reed@reedloden.com> | 2010-07-06 02:44:13 +0200 |
commit | 108eb83fae1e54f9746698246551e188dede26cb (patch) | |
tree | da7596c3a7b9f33d7762c9865c9cc198f4feede4 /template | |
parent | ba4585ae8a1c63a49e40461d2e2efc12bc75c58a (diff) | |
download | bugzilla-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.tmpl | 4 |
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" : " " %] </td> [% END %] + <td class="center"> + [% component.initial_cc.contains(otheruser) ? "X" : " " %] + </td> </tr> [% END %] </tbody> |