comparison sat_templates/default/components/common.html @ 147:33c7ce833d3f

install: setup.py fix + moved "default" dir in a "sat_templates" dir: the merge request at https://bugs.goffi.org/mr/view/3 was a good basis, but not fully working ("default" dir was removed), this patch fixes it, and do some improvments: - moved "default" in "sat_templates" dir, which correspond to the python module, so it can be found easily from python - added VERSION, and mercurial hash detection, in the same way as for Cagou and backend - slight modification of classifiers - replaces tabs coming from MR by spaces
author Goffi <goffi@goffi.org>
date Sat, 02 Jun 2018 17:25:43 +0200
parents default/components/common.html@909361c96a58
children e5ec33c4a8a8
comparison
equal deleted inserted replaced
146:7dc00829c32f 147:33c7ce833d3f
1 {# menu labels, map from menu names to labels #}
2 {% set ml = {
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 'photos': _('Photos albums'),
14 'app': _('Application'),
15 } %}
16
17 {% macro menu(menus, class='') %}
18 <nav class="menu {{class}}">
19 <ul>
20 {% for name,url in menus %}
21 <li><a class="menu_item {{name}}" {{ {'href': url}|xmlattr }}>{{ml[name]}}</a></li>
22 {% endfor %}
23 </ul>
24 </nav>
25 {% endmacro %}