view sat_templates/templates/bulma/input/navigation.html @ 304:cdf88211b86b

bulma (input/field): `field` macro now has `control_class` and `in_group` attributes: - `control_class` is used to specify additional classes for the control (when `class` is used for classes of the of the `field`) - when `in_group` is `true`, `field` is not added, only the `control` is used. This is useful for grouping elements in the same field
author Goffi <goffi@goffi.org>
date Sat, 27 Feb 2021 20:44:01 +0100
parents 741dae9b0612
children 3db3509cbad1
line wrap: on
line source

{% macro prev_next(prev_label=_("newer"), next_label=_("older")) %}
<section class="section">
    <nav class="pagination is-rounded" role="navigation" aria-label="pagination">
        {% if previous_page_url is defined %}
            <a href="{{previous_page_url}}" class="pagination-previous has-background-white">{{prev_label}}</a>
        {% else %}
            <a class="pagination-previous pagination-disabled has-background-white has-text-grey-light has-hover-white-light">{{prev_label}}</a>
        {% endif %}
        {% if next_page_url is defined %}
            <a href="{{next_page_url}}" class="pagination-next has-background-white">{{next_label}}</a>
        {% else %}
            <a class="pagination-next pagination-disabled has-background-white has-text-grey-light has-hover-white-light">{{next_label}}</a>
        {% endif %}
    </nav>
</section>
{% endmacro %}