Skip to content

Commit

Permalink
Merge pull request #1057 from Alex-D/fix_pagination
Browse files Browse the repository at this point in the history
Ajoute les paramètres manquants à la pagination
  • Loading branch information
vhf committed Jul 7, 2014
2 parents cff86c8 + c2a9919 commit 4212d13
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions templates/misc/pagination.part.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,13 @@
<li>
<a href="#pagination-{{ position }}" class="open-modal"></a>
<form action="." method="get" class="modal modal-small" id="pagination-{{ position }}" data-modal-title="Aller à la page…">
{% for key,val in request.GET.iterlists %}
{% if key != "page" %}
{% for v in val %}
<input type="hidden" name="{{ key }}" value="{{ v }}">
{% endfor %}
{% endif %}
{% endfor %}
<p>
Indiquez la page à laquelle vous souhaitez vous rendre.
</p>
Expand Down

0 comments on commit 4212d13

Please sign in to comment.