Skip to content

Commit

Permalink
1.6.1dev: follow-up to r17236, remove include statement with inline-i…
Browse files Browse the repository at this point in the history
…f in query_results.html (refs #13242)

git-svn-id: http://trac.edgewall.org/intertrac/log:/branches/1.6-stable@17802 af82e41b-90c4-0310-8c96-b1721e28e2e2
  • Loading branch information
jomae committed May 24, 2024
1 parent 85c9031 commit d7a4fc4
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions trac/ticket/templates/query_results.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@
# endset
<h2 class="report-result">${tag_("Results %(num)s", num=numresults)}</h2>
# endif
# include 'page_index.html' if paginator.show_index
# if paginator.show_index:
# include 'page_index.html'
# endif

# macro group_heading(groupname, results)
# if groupname is not none:
Expand Down Expand Up @@ -199,5 +201,7 @@ <h2 class="report-result" >
# endfor
</table>
# endwith
# include 'page_index.html' if paginator.show_index
# if paginator.show_index:
# include 'page_index.html'
# endif
</div>

0 comments on commit d7a4fc4

Please sign in to comment.