Bug 365501 - admin/products/groupcontrol/updated uses p as br

r=simon, a=glob


git-svn-id: svn://10.0.0.236/trunk@265021 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bzrmirror%bugzilla.org 2013-09-19 03:18:27 +00:00
parent 9f57c0e836
commit 9076e54006
2 changed files with 20 additions and 8 deletions

View File

@ -1 +1 @@
8744 8745

View File

@ -18,24 +18,36 @@
[% PROCESS global/header.html.tmpl [% PROCESS global/header.html.tmpl
title = title title = title
%] %]
<p>
[% IF changes._group_controls.now_na.size %] [% IF changes._group_controls.now_na.size %]
[% FOREACH g = changes._group_controls.now_na %] [% FOREACH g = changes._group_controls.now_na %]
Removing [% terms.bugs %] from group '[% g.name FILTER html %]' which <p>
no longer applies to this product<p> Removing [% terms.bugs %] from group '[% g.name FILTER html %]' which is
[% g.bug_count FILTER html %] [%+ terms.bugs %] removed<p> no longer applicable to this product.<br>
[% IF g.bug_count == 1 %]
One [% terms.bug %] removed.
[% ELSE %]
[% g.bug_count FILTER html %] [%+ terms.bugs %] removed.
[% END %]
</p>
[% END %] [% END %]
[% END %] [% END %]
[% IF changes._group_controls.now_mandatory.size %] [% IF changes._group_controls.now_mandatory.size %]
[% FOREACH g = changes._group_controls.now_mandatory %] [% FOREACH g = changes._group_controls.now_mandatory %]
<p>
Adding [% terms.bugs %] to group '[% g.name FILTER html %]' which is Adding [% terms.bugs %] to group '[% g.name FILTER html %]' which is
mandatory for this product<p> now mandatory for this product.<br>
[% g.bug_count FILTER html %] [%+ terms.bugs %] added<p> [% IF g.bug_count == 1 %]
One [% terms.bug %] added.
[% ELSE %]
[% g.bug_count FILTER html %] [%+ terms.bugs %] added.
[% END %]
</p>
[% END %] [% END %]
[% END %] [% END %]
Group control updates done<p> <p>Group control updated.</p>
[% PROCESS admin/products/footer.html.tmpl %] [% PROCESS admin/products/footer.html.tmpl %]