diff options
author | Byron Jones <bjones@mozilla.com> | 2013-05-29 06:29:30 +0200 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2013-05-29 06:29:30 +0200 |
commit | 1238159c40c02ffe80a727c568baf8d4c313d03f (patch) | |
tree | b18c0f3ed273eaa62c784d8482a920d8e8056da6 /extensions/Needinfo/template/en | |
parent | 114f371c93495fdab5690144bf9577f95ac224d5 (diff) | |
download | bugzilla-1238159c40c02ffe80a727c568baf8d4c313d03f.tar.gz bugzilla-1238159c40c02ffe80a727c568baf8d4c313d03f.tar.xz |
Bug 876414: I should be able to comment on a bug that is needinfo?(me) without clearing the needinfo?
Diffstat (limited to 'extensions/Needinfo/template/en')
-rw-r--r-- | extensions/Needinfo/template/en/default/bug/needinfo.html.tmpl | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/extensions/Needinfo/template/en/default/bug/needinfo.html.tmpl b/extensions/Needinfo/template/en/default/bug/needinfo.html.tmpl index 2ffbbe835..eff05be29 100644 --- a/extensions/Needinfo/template/en/default/bug/needinfo.html.tmpl +++ b/extensions/Needinfo/template/en/default/bug/needinfo.html.tmpl @@ -34,10 +34,15 @@ [% FOREACH flag = needinfo_flags %] <tr> [% IF !flag.requestee || flag.requestee.id == user.id %] - <td align="center"><span style="color:red;font-weight:bold;">*</span></td> + <td align="center"> + <input type="checkbox" id="needinfo_override_[% flag.id FILTER html %]" + name="needinfo_override_[% flag.id FILTER html %]" value="1" checked> + </td> <td> - Adding a comment will automatically clear needinfo the request for - <em>[% IF !flag.requestee %]anyone[% ELSE %][% flag.requestee.login FILTER html %][% END %]</em>. + <label for="needinfo_override_[% flag.id FILTER html %]"> + Clear the needinfo request for + <em>[% IF !flag.requestee %]anyone[% ELSE %][% flag.requestee.login FILTER html %][% END %]</em>. + </label> </td> [% ELSE %] <td align="center"> |