theme/templates/paginator.html

Wed, 29 Jun 2016 23:18:07 +0200

author
David Douard <david.douard@logilab.fr>
date
Wed, 29 Jun 2016 23:18:07 +0200
changeset 64
dcb6f3fcbd1e
parent 36
9507107a1133
permissions
-rw-r--r--

[hp34970a] add some stuff on the flags decoding

{% if DEFAULT_PAGINATION %}
<p class="paginator">
    {% if articles_page.has_previous() %}
        <a href="{{ SITEURL }}/{{ articles_previous_page.url }}">&laquo;</a>
    {% endif %}
    Page {{ articles_page.number }} / {{ articles_paginator.num_pages }}
    {% if articles_page.has_next() %}
        <a href="{{ SITEURL }}/{{ articles_next_page.url }}">&raquo;</a>
    {% endif %}
</p>
{% endif %}

mercurial