{% load i18n %} {% if sidebar_navigation %}
{% for group in sidebar_navigation %} {% if group.items %} {% if group.separator %}
{% endif %} {% if group.title %}

{{ group.title }}

{% endif %}
    {% for item in group.items %} {% if item.has_permission %}
  1. {% if item.icon %} {{ item.icon }} {% endif %} {{ item.title|safe }} {% if item.badge %} {{ item.badge|safe }} {% endif %}
  2. {% endif %} {% endfor %}
{% endif %} {% endfor %}
{% if sidebar_show_all_applications %}
apps {% trans "All applications" %}
{% for app in app_list %}

{{ app.name }}

{% endfor %}
{% endif %} {% else %}

{% translate "You don’t have permission to view or edit anything." %}

{% endif %}