pagination now might work

This commit is contained in:
haggis 2016-01-13 22:19:45 +01:00
parent f92c61792c
commit 64f02f9bf1
1 changed files with 4 additions and 4 deletions

View File

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