{% from 'macros/language_selection.html' import language_selection with context %} {% macro navigation(brand_url, brand_label, brand_icon=none, dashboard_url=none, is_anonymous=false) %} {% if brand_icon is not none %} {{ brand_icon|icon }} {% endif %} {{ brand_label }} {% if dashboard_url is not none %} {{ gettext("Dashboard") }} {% endif %} {{ caller() }} {{ language_selection() }} {% if is_anonymous %} {{ gettext('Help') }} {% if request.endpoint != 'auth.start' %} {{ gettext('Back') }} {% endif %} {% else %} {{ gettext('Sign out') }} {{ gettext('Help') }} {% endif %} {% endmacro %}