{% if admin_logo is defined %} {{ websitetitle | trans }} {% else %} {{ websitetitle | trans }} {% endif %}
    {% for menuitem in adminmenu.topchildren %} {% set topchildren = menuitem.topchildren %} {% if topchildren | length > 0 %}
  • {{ menuitem.label | trans }}
      {% for topchild in topchildren %} {% set nestedtopchildren = topchild.topchildren %} {% if nestedtopchildren | length > 0 %}
    • {{ topchild.label | trans }}
        {% for nestedtopchild in nestedtopchildren %}
      • {{ nestedtopchild.label | trans }}
      • {% endfor %}
    • {% else %} {% if topchild.route %}
    • {{ topchild.label | trans }}
    • {% endif %} {% endif %} {% endfor %}
  • {% else %}
  • {{ menuitem.label | trans }}
  • {% endif %} {% endfor %}
    {% set actions = get_admin_panel_actions() %} {% for action in actions %} {% include action.template with {'action': action} %} {% endfor %}