Mercurial > libervia-templates
annotate sat_templates/default/components/common.html @ 152:da2c0dc7c1ff
blog/articles: work around for titles
author | Goffi <goffi@goffi.org> |
---|---|
date | Thu, 21 Jun 2018 01:02:33 +0200 |
parents | 0ec76c1f53d3 |
children | 80cf52fbcc40 |
rev | line source |
---|---|
66 | 1 {# menu labels, map from menu names to labels #} |
2 {% set ml = { | |
76
ead4db120515
components/common: profile is now always set, so we just test if it evaluate to True to know if a user is logged
Goffi <goffi@goffi.org>
parents:
66
diff
changeset
|
3 'login': _('Session') if profile else _('Log in'), |
131 | 4 'blog': _('Blog'), |
119
b085ede4d9af
forum/overview: forum template first draft.
Goffi <goffi@goffi.org>
parents:
87
diff
changeset
|
5 'forums': _('Forums'), |
138 | 6 'merge-requests': _('Merge requests'), |
66 | 7 'merge-request_new': _('Create new merge request'), |
135 | 8 'tickets': _('Tickets'), |
139
909361c96a58
components (common/menu): fixed "List tickets" sub menu
Goffi <goffi@goffi.org>
parents:
138
diff
changeset
|
9 'tickets_list': _('List tickets'), |
66 | 10 'ticket_new': _('Create new ticket'), |
85
05b500bd6235
chat: chat implementation, first draft:
Goffi <goffi@goffi.org>
parents:
76
diff
changeset
|
11 'chat': _('Chat'), |
130 | 12 'files': _('Files sharing'), |
151
0ec76c1f53d3
components (common/menu): added events menu
Goffi <goffi@goffi.org>
parents:
149
diff
changeset
|
13 'events': _('Events'), |
130 | 14 'photos': _('Photos albums'), |
87
3ee775795cd0
app: simple page so show a link to heavy web application (i.e. pyjamas version)
Goffi <goffi@goffi.org>
parents:
86
diff
changeset
|
15 'app': _('Application'), |
66 | 16 } %} |
17 | |
18 {% macro menu(menus, class='') %} | |
19 <nav class="menu {{class}}"> | |
20 <ul> | |
21 {% for name,url in menus %} | |
149
e5ec33c4a8a8
forum/overview.html: classes modification + better global design
Goffi <goffi@goffi.org>
parents:
147
diff
changeset
|
22 <li><a class="menu_item menu_item--{{name}}" {{ {'href': url}|xmlattr }}>{{ml[name]}}</a></li> |
66 | 23 {% endfor %} |
24 </ul> | |
25 </nav> | |
26 {% endmacro %} |