view default/components/common.html @ 129:ca42dc037bbf

file (discover): new discovery page: the discovery page will show service, own devices and roster contact devices offering file sharing. An extra field allow to enter free jid. Added a small message in photo/discover.html has photo album discovery is not yes implemented. New block and images macros.
author Goffi <goffi@goffi.org>
date Sat, 24 Mar 2018 11:16:14 +0100
parents b085ede4d9af
children 1a590a16bd20
line wrap: on
line source

{# menu labels, map from menu names to labels #}
{% set ml = {
    'login': _('Session') if profile else _('Log in'),
    'blog_view': _('Blog'),
    'forums': _('Forums'),
    'merge-requests_list': _('Merge requests'),
    'merge-request_new': _('Create new merge request'),
    'tickets_list': _('Tickets'),
    'ticket_new': _('Create new ticket'),
    'chat': _('Chat'),
    'app': _('Application'),
} %}

{% macro menu(menus, class='') %}
    <nav class="menu {{class}}">
        <ul>
        {% for name,url in menus %}
            <li><a class="menu_item {{name}}" {{ {'href': url}|xmlattr }}>{{ml[name]}}</a></li>
        {% endfor %}
        </ul>
    </nav>
{% endmacro %}