summaryrefslogtreecommitdiffstats
path: root/template/en/default/bug/process/bugmail.html.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'template/en/default/bug/process/bugmail.html.tmpl')
-rw-r--r--template/en/default/bug/process/bugmail.html.tmpl16
1 files changed, 7 insertions, 9 deletions
diff --git a/template/en/default/bug/process/bugmail.html.tmpl b/template/en/default/bug/process/bugmail.html.tmpl
index 557f091a1..670c2b04e 100644
--- a/template/en/default/bug/process/bugmail.html.tmpl
+++ b/template/en/default/bug/process/bugmail.html.tmpl
@@ -40,32 +40,29 @@
[% mail = SendBugMail(mailing_bugid, mailrecipients) %]
+<dl>
[% PROCESS emails
description = "Email sent to"
names = mail.sent
%]
-<br>
+
[% PROCESS emails
description = "Excluding"
names = mail.excluded
%]
-<br>
-<center>
- If you wish to tweak the kinds of mail [% terms.Bugzilla %] sends you, you can
- <a href="userprefs.cgi?tab=email">change your preferences</a>.
-</center>
-
+</dl>
[%############################################################################%]
[%# Block for a set of email addresses #%]
[%############################################################################%]
[% BLOCK emails %]
- <b>[% description FILTER html %]:</b>
+ <dt>[% description FILTER html %]:</dt>
+ <dd>
[% IF user.can_see_bug(mailing_bugid) %]
[% IF names.size > 0 %]
[%+ FOREACH name = names %]
- [% name FILTER html %][% ", " UNLESS loop.last() %]
+ <code>[% name FILTER html %]</code>[% ", " UNLESS loop.last() %]
[% END %]
[% ELSE %]
no one
@@ -73,4 +70,5 @@
[% ELSE %]
(list of e-mails not available)
[% END %]
+ </dd>
[% END %]