{% load i18n viewflow %}
{% if app.title %}

{{ app.title }}

{% endif %} {% block viewset_links %} {% if app.parent and app.parent != site %} {% current_viewset_reverse app.parent 'index' as parent_index %}{% if parent_index %} arrow_back {% trans 'Back' %} {% endif %} {% endif %} {% for viewset in app.menu_items %}{% if viewset|has_perm:request.user %} {% current_viewset_reverse viewset 'index' as index_url %}{% if index_url %} {% if viewset.icon %}{{ viewset.icon }}{% else %}view_carousel{% endif %} {% trans viewset.title %} {% endif %} {% endif %}{% empty %}{% block viewset_links_notfound %}
No viewsets found. Please point `.menu_template_name` attribute of the Application class to custom menu template, or set `menu_template_name=None`
{% endblock viewset_links_notfound %}{% endfor %}{% endblock %} {% block additional_links %}{% endblock %}