{% include 'top_menu/_profile_dropdown.html' %}
{% include 'top_menu/_community_dropdown.html' %}
{% include 'top_menu/_apps_dropdown.html' %}
{% if USER_IS_SUPERUSER %}
{% include 'top_menu/_reports_dropdown.html' %}
{% endif %}
{% spaceless %}
{% block nav_label %}{% trans "Pages" %}{% endblock %}
{% endspaceless %}
{# Block containing the navigation for the current app #}
{% block current_app %}
{# This block should be overridden by top_nav.html for inner apps #}
{# default to page because page templates don't inherit from pages/base.html #}
{% if page %}
{% page_current_app request.user page %}
{% else %}
{% page_current_app request.user %}
{% endif %}
{% endblock %}
{% if USER_IS_SUPERUSER %}
{% include 'top_menu/_support_dropdown.html' %}
{% endif %}