aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'template/en/default/global/choose-classification.html.tmpl')
-rw-r--r--template/en/default/global/choose-classification.html.tmpl24
1 files changed, 13 insertions, 11 deletions
diff --git a/template/en/default/global/choose-classification.html.tmpl b/template/en/default/global/choose-classification.html.tmpl
index 76789a2fc..8433380ea 100644
--- a/template/en/default/global/choose-classification.html.tmpl
+++ b/template/en/default/global/choose-classification.html.tmpl
@@ -12,23 +12,26 @@
#%]
[% IF target == "enter_bug.cgi" %]
- [% title = "Select Classification" %]
- [% subheader = "Please select the classification." %]
+ [% title = "Enter $terms.Bug" %]
+ [% subheader = "Select Classification" %]
[% END %]
[% DEFAULT title = "Choose the classification" %]
[% PROCESS global/header.html.tmpl %]
-<table>
+[% USE Bugzilla %]
+[% previous_params = Bugzilla.cgi.canonicalise_query('classification') %]
+
+<h2>First, you must pick a classification on which to enter [% terms.abug %]:</h2>
+<table id="choose_classification">
<tr>
- <th align="right">
+ <th class="right">
<a href="[% target FILTER uri %]?classification=__all
- [% IF cloned_bug_id %]&amp;cloned_bug_id=[% cloned_bug_id FILTER uri %][% END -%]
- [%- IF format %]&amp;format=[% format FILTER uri %][% END %]">
+ [%- IF previous_params %]&amp;[% previous_params FILTER none %][% END -%]">
All</a>:
</th>
- <td valign="top">&nbsp;Show all products</td>
+ <td>Show all products</td>
</tr>
<tr>
<th colspan="2">&nbsp;</th>
@@ -36,15 +39,14 @@
[% FOREACH class = classifications %]
<tr>
- <th align="right">
+ <th class="right">
<a href="[% target FILTER uri %]?classification=[% class.name FILTER uri -%]
- [%- IF cloned_bug_id %]&amp;cloned_bug_id=[% cloned_bug_id FILTER uri %][% END -%]
- [%- IF format %]&amp;format=[% format FILTER uri %][% END %]">
+ [%- IF previous_params %]&amp;[% previous_params FILTER none %][% END -%]">
[% class.name FILTER html %]</a>:
</th>
[% IF class.description %]
- <td valign="top">&nbsp;[% class.description FILTER html_light %]</td>
+ <td>[% class.description FILTER html_light %]</td>
[% END %]
</tr>
[% END %]