Mercurial > libervia-templates
annotate 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 |
rev | line source |
---|---|
230 | 1 {% macro prev_next(prev_label=_("newer"), next_label=_("older")) %} |
2 <section class="section"> | |
3 <nav class="pagination is-rounded" role="navigation" aria-label="pagination"> | |
4 {% if previous_page_url is defined %} | |
5 <a href="{{previous_page_url}}" class="pagination-previous has-background-white">{{prev_label}}</a> | |
6 {% else %} | |
7 <a class="pagination-previous pagination-disabled has-background-white has-text-grey-light has-hover-white-light">{{prev_label}}</a> | |
8 {% endif %} | |
9 {% if next_page_url is defined %} | |
10 <a href="{{next_page_url}}" class="pagination-next has-background-white">{{next_label}}</a> | |
11 {% else %} | |
232
741dae9b0612
(bulma) pagination: fixed label for pagination-next
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
12 <a class="pagination-next pagination-disabled has-background-white has-text-grey-light has-hover-white-light">{{next_label}}</a> |
230 | 13 {% endif %} |
14 </nav> | |
15 </section> | |
16 {% endmacro %} |