Mercurial > libervia-templates
annotate sat_templates/templates/default/components/common.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 | 7539d98e1d08 |
children |
rev | line source |
---|---|
187
7539d98e1d08
components (menu): disable cache when importing "menu_labels":
Goffi <goffi@goffi.org>
parents:
183
diff
changeset
|
1 {% import 'components/menu_labels.html' as ml with context %} |
7539d98e1d08
components (menu): disable cache when importing "menu_labels":
Goffi <goffi@goffi.org>
parents:
183
diff
changeset
|
2 {# we need to use "with context" to disable cache, needed for i18n #} |
66 | 3 |
4 {% macro menu(menus, class='') %} | |
5 <nav class="menu {{class}}"> | |
6 <ul> | |
7 {% for name,url in menus %} | |
166
178f55b825b7
small refactoring/redesign, better BEM integration:
Goffi <goffi@goffi.org>
parents:
164
diff
changeset
|
8 <li><a class="menu_item menu_item--{{name}}" {{ {'href': url}|xmlattr }}>{{ml.label[name]}}</a></li> |
66 | 9 {% endfor %} |
10 </ul> | |
183 | 11 {% if caller is defined %} |
12 {{ caller()}} | |
13 {% endif %} | |
66 | 14 </nav> |
15 {% endmacro %} |