pagination now might work

This commit is contained in:
haggis 2016-01-13 22:19:45 +01:00
parent f92c61792c
commit 64f02f9bf1

View File

@ -51,12 +51,12 @@ layout: default
{% endfor %} {% endfor %}
<div class="page-navigation"> <div class="page-navigation">
{% if previous_page %} {% if paginator.previous_page %}
<a href="{{ previous_page_path }}">Zur&uuml;ck</a> <a href="{{ paginator.previous_page_path }}">Zur&uuml;ck</a>
{% endif %} {% endif %}
| Seite {{ page }} von {{ total pages }} | | Seite {{ paginator.page }} von {{ paginator.total pages }} |
{% if next_page %} {% if next_page %}
<a href="{{ next_page_path }}">Vor</a> <a href="{{ paginator.next_page_path }}">Vor</a>
{% endif %} {% endif %}
</div> </div>