Mercurial > libervia-templates
annotate default/components/common.html @ 130:1a590a16bd20
component(common): updated menu
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 24 Mar 2018 11:09:27 +0100 |
parents | b085ede4d9af |
children | c3f50951f2cc |
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'), |
66 | 4 'blog_view': _('Blog'), |
119
b085ede4d9af
forum/overview: forum template first draft.
Goffi <goffi@goffi.org>
parents:
87
diff
changeset
|
5 'forums': _('Forums'), |
66 | 6 'merge-requests_list': _('Merge requests'), |
7 'merge-request_new': _('Create new merge request'), | |
8 'tickets_list': _('Tickets'), | |
9 'ticket_new': _('Create new ticket'), | |
85
05b500bd6235
chat: chat implementation, first draft:
Goffi <goffi@goffi.org>
parents:
76
diff
changeset
|
10 'chat': _('Chat'), |
130 | 11 'files': _('Files sharing'), |
12 '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
|
13 'app': _('Application'), |
66 | 14 } %} |
15 | |
16 {% macro menu(menus, class='') %} | |
17 <nav class="menu {{class}}"> | |
18 <ul> | |
19 {% for name,url in menus %} | |
86
92ca411ee635
chat: new chat_select page to select a jid to talk to + improved button style
Goffi <goffi@goffi.org>
parents:
85
diff
changeset
|
20 <li><a class="menu_item {{name}}" {{ {'href': url}|xmlattr }}>{{ml[name]}}</a></li> |
66 | 21 {% endfor %} |
22 </ul> | |
23 </nav> | |
24 {% endmacro %} |