Make the pagination debug friendly

This commit is contained in:
Thomas Sileo 2018-07-24 23:44:16 +02:00
parent 7e0ff187a2
commit d544cf893e

View file

@ -222,10 +222,10 @@
{% macro display_pagination(older_than, newer_than) -%} {% macro display_pagination(older_than, newer_than) -%}
<div class="clear"> <div class="clear">
{% if older_than %} {% if older_than %}
<a href="{{ config.BASE_URL }}{{ request.path }}?older_than={{older_than}}" rel="next" class="older-link lcolor"><span class="pcolor">🡨</span> Older</a> <a href="{{ config.BASE_URL }}{{ request.path }}?older_than={{older_than}}{% if request.args.get('limit') %}&limit={{request.args.get('limit')}}{% endif %}" rel="next" class="older-link lcolor"><span class="pcolor">🡨</span> Older</a>
{% endif %} {% endif %}
{% if newer_than %} {% if newer_than %}
<a href="{{ config.BASE_URL }}{{ request.path }}?newer_than={{newer_than}}" rel="prev" class="newer-link lcolor">Newer <span class="pcolor">🡪</span></a> <a href="{{ config.BASE_URL }}{{ request.path }}?newer_than={{newer_than}}{% if request.args.get('limit') %}&limit={{request.args.get('limit')}}{% endif %}" rel="prev" class="newer-link lcolor">Newer <span class="pcolor">🡪</span></a>
{% endif %} {% endif %}
</div> </div>
{% endmacro -%} {% endmacro -%}