diff options
Diffstat (limited to 'template/en/default')
-rw-r--r-- | template/en/default/list/list.html.tmpl | 1 | ||||
-rw-r--r-- | template/en/default/list/table.html.tmpl | 54 |
2 files changed, 23 insertions, 32 deletions
diff --git a/template/en/default/list/list.html.tmpl b/template/en/default/list/list.html.tmpl index 17afee014..0a8eb402c 100644 --- a/template/en/default/list/list.html.tmpl +++ b/template/en/default/list/list.html.tmpl @@ -36,7 +36,6 @@ [% END %] [% qorder = order FILTER url_quote IF order %] -[% message = "buglist_sorted_by_relevance" IF sorted_by_relevance %] [%############################################################################%] diff --git a/template/en/default/list/table.html.tmpl b/template/en/default/list/table.html.tmpl index c2904ceb9..47d2e4643 100644 --- a/template/en/default/list/table.html.tmpl +++ b/template/en/default/list/table.html.tmpl @@ -85,18 +85,14 @@ <th> </th> [% END %] <th colspan="[% splitheader ? 2 : 1 %]" class="first-child"> - [% IF sorted_by_relevance %] - ID - [% ELSE %] - [% desc = '' %] - [% IF (om = order.match("^bugs\.bug_id( desc)?")) %] - [% desc = ' desc' IF NOT om.0 %] - [% END %] - <a href="buglist.cgi? - [% urlquerypart FILTER html %]&order=bugs.bug_id[% desc FILTER url_quote %] - [%-#%]&query_based_on= - [% defaultsavename OR searchname FILTER url_quote %]">ID</a> + [% desc = '' %] + [% IF (om = order.match("^bugs\.bug_id( desc)?")) %] + [% desc = ' desc' IF NOT om.0 %] [% END %] + <a href="buglist.cgi? + [% urlquerypart FILTER html %]&order=bugs.bug_id[% desc FILTER url_quote %] + [%-#%]&query_based_on= + [% defaultsavename OR searchname FILTER url_quote %]">ID</a> </th> [% IF splitheader %] @@ -133,28 +129,24 @@ [% BLOCK columnheader %] <th colspan="[% splitheader ? 2 : 1 %]"> - [% IF sorted_by_relevance %] - [%- abbrev.$id.title || field_descs.$id || column.title -%] + [% IF column.name.match('\s+AS\s+') %] + [%# For aliased columns, use their ID for sorting. %] + [% column.sortalias = id %] [% ELSE %] - [% IF column.name.match('\s+AS\s+') %] - [%# For aliased columns, use their ID for sorting. %] - [% column.sortalias = id %] - [% ELSE %] - [%# Other columns may sort on their name directly. %] - [% column.sortalias = column.name %] - [% END %] - [% desc = '' %] - [% IF (om = order.match("$column.sortalias( desc)?")) %] - [% desc = ' desc' IF NOT om.0 %] - [% END %] - [% order = order.remove("$column.sortalias( desc)?,?") %] - <a href="buglist.cgi?[% urlquerypart FILTER html %]&order= - [% column.sortalias FILTER url_quote %][% desc FILTER url_quote %] - [% ",$order" FILTER url_quote IF order %] - [%-#%]&query_based_on= - [% defaultsavename OR searchname FILTER url_quote %]"> - [%- abbrev.$id.title || field_descs.$id || column.title -%]</a> + [%# Other columns may sort on their name directly. %] + [% column.sortalias = column.name %] + [% END %] + [% desc = '' %] + [% IF (om = order.match("$column.sortalias( desc)?")) %] + [% desc = ' desc' IF NOT om.0 %] [% END %] + [% order = order.remove("$column.sortalias( desc)?,?") %] + <a href="buglist.cgi?[% urlquerypart FILTER html %]&order= + [% column.sortalias FILTER url_quote %][% desc FILTER url_quote %] + [% ",$order" FILTER url_quote IF order %] + [%-#%]&query_based_on= + [% defaultsavename OR searchname FILTER url_quote %]"> + [%- abbrev.$id.title || field_descs.$id || column.title -%]</a> </th> [% END %] |