diff options
author | lpsolit%gmail.com <> | 2005-08-23 06:12:38 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-08-23 06:12:38 +0200 |
commit | 513b4b1683e9b95dcddf98c2dc597fd4adc4ac8e (patch) | |
tree | 4eb73302761da2da16b160618e503f40142acab2 /template/en | |
parent | 04b1c1f9602547c2cad48ff5e8e4f198f6b7c044 (diff) | |
download | bugzilla-513b4b1683e9b95dcddf98c2dc597fd4adc4ac8e.tar.gz bugzilla-513b4b1683e9b95dcddf98c2dc597fd4adc4ac8e.tar.xz |
Bug 226583: Request queue header is way too wide - Patch by Teemu Mannermaa <wicked@etlicon.fi> r=LpSolit a=justdave
Diffstat (limited to 'template/en')
-rw-r--r-- | template/en/default/request/queue.html.tmpl | 24 |
1 files changed, 10 insertions, 14 deletions
diff --git a/template/en/default/request/queue.html.tmpl b/template/en/default/request/queue.html.tmpl index fbfa94d25..a6edcd8a3 100644 --- a/template/en/default/request/queue.html.tmpl +++ b/template/en/default/request/queue.html.tmpl @@ -36,7 +36,16 @@ [% END %] [% END %] -[% filter_form = BLOCK %] +[% PROCESS global/header.html.tmpl + title="Request Queue" + style = " + table.requests th { text-align: left; } + table#filter th { text-align: right; } + " + onload="selectProduct(document.forms[0], 'product', 'component', 'Any');" + javascript_urls=["productmenu.js"] +%] + <form action="request.cgi" method="get"> <input type="hidden" name="action" value="queue"> @@ -104,7 +113,6 @@ </table> </form> -[% END %] [% column_headers = { "type" => "Flag" , @@ -121,18 +129,6 @@ group_value = "" %] - -[% PROCESS global/header.html.tmpl - title="Request Queue" - h2=filter_form - style = " - table.requests th { text-align: left; } - table#filter th { text-align: right; } - " - onload="selectProduct(document.forms[0], 'product', 'component', 'Any');" - javascript_urls=["productmenu.js"] -%] - [% IF debug %] <p>[% query FILTER html %]</p> [% END %] |