diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2013-06-05 14:39:19 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2013-06-05 14:39:19 +0200 |
commit | e4aa1e72aed102d06d13bfe95a96df4c15ecd068 (patch) | |
tree | ca282b9e969fae27b3e49c8915a726bc0a01178b /template/en/default/bug | |
parent | 9da412006c554d22865913d05b111cf01408e346 (diff) | |
download | bugs-e4aa1e72aed102d06d13bfe95a96df4c15ecd068.tar bugs-e4aa1e72aed102d06d13bfe95a96df4c15ecd068.tar.gz bugs-e4aa1e72aed102d06d13bfe95a96df4c15ecd068.tar.bz2 bugs-e4aa1e72aed102d06d13bfe95a96df4c15ecd068.tar.xz bugs-e4aa1e72aed102d06d13bfe95a96df4c15ecd068.zip |
Bug 874944: Do not display the Excluded list when sending bugmails
r=dkl a=LpSolit
Diffstat (limited to 'template/en/default/bug')
-rw-r--r-- | template/en/default/bug/process/bugmail.html.tmpl | 24 |
1 files changed, 4 insertions, 20 deletions
diff --git a/template/en/default/bug/process/bugmail.html.tmpl b/template/en/default/bug/process/bugmail.html.tmpl index b1c38da96..0d77e6f66 100644 --- a/template/en/default/bug/process/bugmail.html.tmpl +++ b/template/en/default/bug/process/bugmail.html.tmpl @@ -12,27 +12,11 @@ #%] <dl> -[% PROCESS emails - description = "Email sent to" - names = sent_bugmail.sent -%] - -[% PROCESS emails - description = "Excluding" - names = sent_bugmail.excluded -%] -</dl> - -[%############################################################################%] -[%# Block for a set of email addresses #%] -[%############################################################################%] - -[% BLOCK emails %] - <dt>[% description FILTER html %]:</dt> + <dt>Email sent to:</dt> <dd> [% IF user.can_see_bug(mailing_bugid) %] - [% IF names.size > 0 %] - [%+ FOREACH name = names %] + [% IF sent_bugmail.sent.size %] + [% FOREACH name = sent_bugmail.sent %] <code>[% name FILTER html %]</code>[% ", " UNLESS loop.last() %] [% END %] [% ELSE %] @@ -42,4 +26,4 @@ (list of e-mails not available) [% END %] </dd> -[% END %] +</dl> |