Skip to content

Commit

Permalink
Merge pull request #2700 from troglodite2/2699-de_filter-bad-page-nav…
Browse files Browse the repository at this point in the history
…igation

Add {{ get_string }} to docket page navigation within filter bar
  • Loading branch information
mlissner authored May 1, 2023
2 parents e1c416d + f0db7e1 commit 2a7d47a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cl/opinion_page/templates/includes/de_filter.html
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
<div class="tight-input col-xs-6 hidden-sm col-sm-6 col-md-1 col-lg-2" >
<div class="pull-right" >
{% if docket_entries.has_previous %}
<a class="btn btn-default" href="?page={{ docket_entries.previous_page_number }}" rel="prev" >
<a class="btn btn-default" href="?{{ get_string }}page={{ docket_entries.previous_page_number }}" rel="prev" >
<i class="fa fa-caret-left" ></i><span class="hidden-md" >&nbsp;Prev.</span>
</a>
{% else %}
Expand All @@ -93,7 +93,7 @@
</a>
{% endif %}
{% if docket_entries.has_next %}
<a class="btn btn-default" href="?page={{ docket_entries.next_page_number }}" rel="next" >
<a class="btn btn-default" href="?{{ get_string }}page={{ docket_entries.next_page_number }}" rel="next" >
<span class="hidden-md" >Next&nbsp;</span><i class="fa fa-caret-right"></i>
</a>
{% else %}
Expand Down

0 comments on commit 2a7d47a

Please sign in to comment.