diff options
author | Dave Lawrence <dlawrence@mozilla.com> | 2012-01-12 00:05:46 +0100 |
---|---|---|
committer | Dave Lawrence <dlawrence@mozilla.com> | 2012-01-12 00:05:46 +0100 |
commit | d67ed6078ec039fad57b6e87f4a08f5361b47666 (patch) | |
tree | 8b6082cb4663da6d88089096219d7565d2cea4e8 /template/en/default/request | |
parent | 57fa5bafd2a1d68594745c7ea2c854798ad99857 (diff) | |
download | bugzilla-d67ed6078ec039fad57b6e87f4a08f5361b47666.tar.gz bugzilla-d67ed6078ec039fad57b6e87f4a08f5361b47666.tar.xz |
Bug 712052 - Investigate if patches could have priority flags
r=glob
Diffstat (limited to 'template/en/default/request')
-rw-r--r-- | template/en/default/request/queue.html.tmpl | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/template/en/default/request/queue.html.tmpl b/template/en/default/request/queue.html.tmpl index 57650de55..a1f670158 100644 --- a/template/en/default/request/queue.html.tmpl +++ b/template/en/default/request/queue.html.tmpl @@ -198,7 +198,10 @@ to some group are shown by default. [% PROCESS start_new_table %] [% END %] [% buglist.${request.bug_id} = 1 %] - <tr> + + <tr class="bz_bugitem bz_[% request.bug_severity FILTER css_class_quote -%] + bz_[% request.priority FILTER css_class_quote -%] + bz_[% request.bug_status FILTER css_class_quote %]"> [% FOREACH column = display_columns %] [% NEXT IF column == group_field || excluded_columns.contains(column) %] <td> @@ -238,7 +241,7 @@ to some group are shown by default. [% BLOCK display_bug %] <a href="show_bug.cgi?id=[% request.bug_id %]" [%- ' class="bz_secure"' IF request.restricted %]> - [% request.bug_id %]: [%+ request.bug_summary FILTER html %]</a> + [% request.bug_id %] ([% request.priority FILTER html %]/[% request.bug_severity FILTER html %]): [%+ request.bug_summary FILTER html %]</a> [% END %] [% BLOCK display_attachment %] |