Mercurial > libervia-templates
view sat_templates/templates/bulma/input/navigation.html @ 346:a9cc406ef7c6
i18n: Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: Libervia/templates
Translate-URL: https://salut-a-toi.org/weblate/projects/libervia/templates/
author | Weblate <noreply@weblate.org> |
---|---|
date | Wed, 16 Jun 2021 14:33:01 +0000 |
parents | 3db3509cbad1 |
children |
line wrap: on
line source
{% macro prev_next(prev_label=_("older"), next_label=_("newer")) %} <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 %}