Mercurial > libervia-templates
annotate sat_templates/templates/bulma/components/menu_labels.html @ 289:f1a39607d6a5
bulma (base/base.html): `full_screen_body` parameter + body_wrapper:
- if `full_screen_body` is set in template, the `body--fullscreen` class will be added to
`<body>` element. It will then be a flexbox container (in columns), and displayed on the whole viewport.
- new `body_wrapper` block, if a page needs to replace the `#body` container.
author | Goffi <goffi@goffi.org> |
---|---|
date | Mon, 28 Sep 2020 17:25:26 +0200 |
parents | 0e69b5843c2f |
children | 1c330913ff13 |
rev | line source |
---|---|
230 | 1 {# menu labels, map from menu names to labels #} |
2 {% set label = { | |
3 'login': _('Session') if profile else _('Log in'), | |
4 'blog': _('Blog'), | |
5 'forums': _('Forums'), | |
6 'merge-requests': _('Merge requests'), | |
7 'merge-request_new': _('Create new merge request'), | |
8 'tickets': _('Tickets'), | |
9 'tickets_list': _('List tickets'), | |
10 'ticket_new': _('Create new ticket'), | |
11 'chat': _('Chat'), | |
12 'files': _('Files sharing'), | |
13 'events': _('Events'), | |
14 'event_new': _('Create an event'), | |
15 'photos': _('Photos albums'), | |
16 'app': _('Application'), | |
17 } %} |