diff options
author | gerv%gerv.net <> | 2003-11-09 06:49:18 +0100 |
---|---|---|
committer | gerv%gerv.net <> | 2003-11-09 06:49:18 +0100 |
commit | 5f61a3d84eef44c09244996a5787bfc24621f60c (patch) | |
tree | 4d979bc6f3b04b47e0018a4929d544d0e972d782 /template/en/default/list | |
parent | ef05aed5674b707b85233a6670edb500fd70b77d (diff) | |
download | bugzilla-5f61a3d84eef44c09244996a5787bfc24621f60c.tar.gz bugzilla-5f61a3d84eef44c09244996a5787bfc24621f60c.tar.xz |
Bug 179339 - Simplify and improve the stored query mechanism. Patch by gerv; r,a=myk.
Diffstat (limited to 'template/en/default/list')
-rw-r--r-- | template/en/default/list/list.html.tmpl | 86 |
1 files changed, 58 insertions, 28 deletions
diff --git a/template/en/default/list/list.html.tmpl b/template/en/default/list/list.html.tmpl index a61bdef98..4d5a48c79 100644 --- a/template/en/default/list/list.html.tmpl +++ b/template/en/default/list/list.html.tmpl @@ -25,7 +25,11 @@ [% PROCESS global/variables.none.tmpl %] -[% DEFAULT title = "$terms.Bug List" %] +[% title = "$terms.Bug List" %] +[% IF searchname %] + [% title = title _ ": " _ searchname FILTER html %] +[% END %] + [% style_urls = [ "css/buglist.css" ] %] [% qorder = order FILTER url_quote IF order %] [% message = "buglist_sorted_by_relevance" IF sorted_by_relevance %] @@ -132,33 +136,59 @@ [%############################################################################%] [% IF bugs.size > 0 %] - <form method="post" action="long_list.cgi"> - <input type="hidden" name="buglist" value="[% buglist %]"> - <input type="submit" value="Long Format"> - - <a href="buglist.cgi? - [% urlquerypart FILTER html %]&ctype=csv">CSV</a> - <a href="colchange.cgi? - [% urlquerypart FILTER html %]">Change Columns</a> - - [% IF bugs.size > 1 && caneditbugs && !dotweak %] - <a href="buglist.cgi?[% urlquerypart FILTER html %] - [%- "&order=$qorder" FILTER html IF order %]&tweak=1">Change Several - [% terms.Bugs %] at Once</a> - - [% END %] - - [% IF bugowners %] - <a href="mailto:[% bugowners FILTER html %]">Send - Mail to [% terms.Bug %] Owners</a> - - [% END %] - - <a href="query.cgi? - [% urlquerypart FILTER html %]">Edit this Query</a> - - </form> - + <p> + <table> + <tr> + <td valign="top"> + <form method="post" action="long_list.cgi"> + <input type="hidden" name="buglist" value="[% buglist %]"> + <input type="submit" value="Long Format"> + </form> + </td> + <td> </td> + <td valign="top"> + <a href="buglist.cgi? + [% urlquerypart FILTER html %]&ctype=csv">CSV</a> | + <a href="colchange.cgi? + [% urlquerypart FILTER html %]">Change Columns</a> | + + [% IF bugs.size > 1 && caneditbugs && !dotweak %] + <a href="buglist.cgi?[% urlquerypart FILTER html %] + [%- "&order=$qorder" FILTER html IF order %]&tweak=1" + >Change Several [% terms.Bugs %] at Once</a> + | + [% END %] + + [% IF bugowners %] + <a href="mailto: + [% bugowners FILTER html %]">Send Mail to [% terms.Bug %] Owners</a> | + [% END %] + + <a href="query.cgi?[% urlquerypart FILTER html %]">Edit Search</a> + </td> + [% IF searchname %] + <td valign="top" nowrap="nowrap"> + | + <a href="buglist.cgi?cmdtype=dorem&remaction=forget&namedcmd= + [% searchname FILTER html %]">Forget Search ' + [% searchname FILTER html %]'</a> + </td> + [% ELSE %] + <td> </td> + <td> + <form method="get" action="buglist.cgi"> + <input type="submit" value="Remember search"> as + <input type="hidden" name="newquery" + value="[% urlquerypart FILTER html %]"> + <input type="hidden" name="cmdtype" value="doit"> + <input type="hidden" name="remtype" value="asnamed"> + <input type="text" name="newqueryname" size="20"> + </form> + </td> + [% END %] + </tr> + </table> + </p> [% END %] |