view sat_templates/default/components/common.html @ 153:b84d20af0ed3

macros (field, form, textbox): general improvments: - use a generic "field" macro for most fields - added "required" class on input labels if suitable - extra kw args are used as input field attributes. Same thing for forms - better handling of id if label is missing - added blog_text macro in textbox for basic text blog input - textbox is more customisable (class and textarea class can be specified)
author Goffi <goffi@goffi.org>
date Thu, 21 Jun 2018 01:09:00 +0200
parents 0ec76c1f53d3
children 80cf52fbcc40
line wrap: on
line source

{# menu labels, map from menu names to labels #}
{% set ml = {
    'login': _('Session') if profile else _('Log in'),
    'blog': _('Blog'),
    'forums': _('Forums'),
    'merge-requests': _('Merge requests'),
    'merge-request_new': _('Create new merge request'),
    'tickets': _('Tickets'),
    'tickets_list': _('List tickets'),
    'ticket_new': _('Create new ticket'),
    'chat': _('Chat'),
    'files': _('Files sharing'),
    'events': _('Events'),
    'photos': _('Photos albums'),
    'app': _('Application'),
} %}

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