summaryrefslogtreecommitdiffstats
path: root/template
diff options
context:
space:
mode:
authorSunil Joshi <joshi_sunil@in.com>2013-08-16 01:12:57 +0200
committerSimon Green <sgreen@redhat.com>2013-08-16 01:12:57 +0200
commit300a4ae21baa491e515526ca9d1294406dd2937e (patch)
tree30dd30b2d5ceee030d55327d40ad893e66ada807 /template
parent759a6ee2c901c9ab225831a916ca05db016a55eb (diff)
downloadbugzilla-300a4ae21baa491e515526ca9d1294406dd2937e.tar.gz
bugzilla-300a4ae21baa491e515526ca9d1294406dd2937e.tar.xz
Bug 365499 - admin/products/groupcontrol/confirm-edit uses p as br
r=sgreen, a=sgreen
Diffstat (limited to 'template')
-rw-r--r--template/en/default/admin/products/groupcontrol/confirm-edit.html.tmpl45
1 files changed, 27 insertions, 18 deletions
diff --git a/template/en/default/admin/products/groupcontrol/confirm-edit.html.tmpl b/template/en/default/admin/products/groupcontrol/confirm-edit.html.tmpl
index fc3ad9b82..354673c3d 100644
--- a/template/en/default/admin/products/groupcontrol/confirm-edit.html.tmpl
+++ b/template/en/default/admin/products/groupcontrol/confirm-edit.html.tmpl
@@ -11,32 +11,41 @@
[% END %]
[% PROCESS global/header.html.tmpl title = title %]
+
[% FOREACH group = mandatory_groups %]
-<P>
-group '[% group.name FILTER html %]' impacts [% group.count %]
-[%+ terms.bugs %] for
-which the group is newly mandatory and will be added.
+ <p>
+ Group '[% group.name FILTER html %]' impacts
+ [% IF group.count == 1 %]
+ one [%+ terms.bug %]
+ [% ELSE %]
+ [% group.count %] [%+ terms.bugs %]
+ [% END %]
+ for which this group is mandatory and will be added.
+ </p>
[% END %]
[% FOREACH group = na_groups %]
-<P>
-group '[% group.name FILTER html %]' impacts [% group.count %]&nbsp;
-[% terms.bugs %] for which the group is no longer applicable and will
-be removed.[% END %]
-<form action="editproducts.cgi" method="post" >
+ <p>
+ Group '[% group.name FILTER html %]' impacts
+ [% IF group.count == 1 %]
+ one [%+ terms.bug %]
+ [% ELSE %]
+ [% group.count %] [%+ terms.bugs %]
+ [% END %]
+ for which this group is no longer applicable and will be removed.
+ </p>
+[% END %]
+<form action="editproducts.cgi" method="post" >
[% PROCESS "global/hidden-fields.html.tmpl" exclude="^Bugzilla_(login|password)$" %]
-
- <br>
- Click "Continue" to proceed with the change including the changes
- indicated above. If you do not want these changes, use "back" to
- return to the previous page.
<p>
- <input type="hidden" name="confirmed" value="confirmed">
- <input type="submit" id="update" value="Continue">
+ <br>
+ Click "Continue" to proceed with the change including the changes
+ indicated above. If you do not want these changes, use "back" to
+ return to the previous page.
</p>
-
+ <input type="hidden" name="confirmed" value="confirmed">
+ <input type="submit" id="update" value="Continue">
</form>
-
[% PROCESS global/footer.html.tmpl %]