diff options
author | mkanat%bugzilla.org <> | 2009-08-12 03:42:32 +0200 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2009-08-12 03:42:32 +0200 |
commit | bf68d5918c2eea9b123ee36c7f3541cc1154e060 (patch) | |
tree | bb2dee504ca5a4e621a505b694284aa30f6c3866 /template/en/default/bug | |
parent | 73bb17590cf3f15166d20b028977d0c61a487b1e (diff) | |
download | bugzilla-bf68d5918c2eea9b123ee36c7f3541cc1154e060.tar.gz bugzilla-bf68d5918c2eea9b123ee36c7f3541cc1154e060.tar.xz |
Bug 509108: Don't require a bug_list parameter to show the bug template (create the last_bug_list global template parameter)
Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=LpSolit
Diffstat (limited to 'template/en/default/bug')
-rw-r--r-- | template/en/default/bug/create/created.html.tmpl | 2 | ||||
-rw-r--r-- | template/en/default/bug/navigate.html.tmpl | 19 |
2 files changed, 10 insertions, 11 deletions
diff --git a/template/en/default/bug/create/created.html.tmpl b/template/en/default/bug/create/created.html.tmpl index 0a03a4d71..dd1be1c17 100644 --- a/template/en/default/bug/create/created.html.tmpl +++ b/template/en/default/bug/create/created.html.tmpl @@ -28,8 +28,6 @@ # this contents, see template bug/process/bugmail.html.tmpl # bug: object; Bugzilla::Bug object of the bug that was created (used in # template bug/edit.html.tmpl - # bug_list: array of integers; sorted bug list (used in template - # bug/navigate.html.tmpl) #%] [% PROCESS global/variables.none.tmpl %] diff --git a/template/en/default/bug/navigate.html.tmpl b/template/en/default/bug/navigate.html.tmpl index 7b8f3c827..9592301f7 100644 --- a/template/en/default/bug/navigate.html.tmpl +++ b/template/en/default/bug/navigate.html.tmpl @@ -36,30 +36,32 @@ <div class="navigation"> -[% IF bug_list && bug_list.size > 0 %] - [% this_bug_idx = lsearch(bug_list, bug.bug_id) %] +[% IF last_bug_list.size > 0 %] + [% this_bug_idx = lsearch(last_bug_list, bug.id) %] <b>[% terms.Bug %] List:</b> [% IF this_bug_idx != -1 %] - ([% this_bug_idx + 1 %] of [% bug_list.size %]) + ([% this_bug_idx + 1 %] of [% last_bug_list.size %]) [% END %] [% IF this_bug_idx != -1 %] - <a href="show_bug.cgi?id=[% bug_list.first %]">First</a> - <a href="show_bug.cgi?id=[% bug_list.last %]">Last</a> + <a href="show_bug.cgi?id=[% last_bug_list.first FILTER url_quote %]">First</a> + <a href="show_bug.cgi?id=[% last_bug_list.last FILTER url_quote %]">Last</a> [% END %] [% IF bug.bug_id %] [% IF this_bug_idx != -1 %] [% IF this_bug_idx > 0 %] [% prev_bug = this_bug_idx - 1 %] - <a href="show_bug.cgi?id=[% bug_list.$prev_bug %]">Prev</a> + <a href="show_bug.cgi?id= + [%- last_bug_list.$prev_bug FILTER url_quote %]">Prev</a> [% ELSE %] <i><font color="#777777">Prev</font></i> [% END %] - [% IF this_bug_idx + 1 < bug_list.size %] + [% IF this_bug_idx + 1 < last_bug_list.size %] [% next_bug = this_bug_idx + 1 %] - <a href="show_bug.cgi?id=[% bug_list.$next_bug %]">Next</a> + <a href="show_bug.cgi?id= + [%- last_bug_list.$next_bug FILTER url_quote %]">Next</a> [% ELSE %] <i><font color="#777777">Next</font></i> [% END %] @@ -72,7 +74,6 @@ <a href="buglist.cgi?regetlastlist=1">Show last search results</a> [% ELSE %] - [%# Either !bug_list || bug_list.size <= 0 %] [%# With no list, don't show link to search results %] <i><font color="#777777">First</font></i> <i><font color="#777777">Last</font></i> |