{% macro menu(menu_root=None) %} {% set is_main_nav = menu_root == None %} {% if menu_root is none %}{% set menu_root = admin_view.admin.menu() %}{% endif %}
{% endmacro %} {% macro menu_links(links=None) %} {% if links is none %}{% set links = admin_view.admin.menu_links() %}{% endif %} {% for item in links %} {% set class_name = item.get_class_name() %} {% if item.is_accessible() and item.is_visible() %} {{ item.name }} {% endif %} {% endfor %} {% endmacro %} {% macro messages() %} {% with messages = get_flashed_messages(with_categories=True) %} {% if messages %} {% for category, m in messages %} {% if category %} {# alert-error changed to alert-danger in bootstrap 3, mapping is for backwards compatibility #} {% set mapping = {'message': 'info', 'error': 'danger'} %}
{% else %}
{% endif %} {{ m }}
{% endfor %} {% endif %} {% endwith %} {% endmacro %}