{% extends 'BazookasAdminBundle:Layout:default.html.twig' %} {% trans_default_domain "admin" %} {% set titleTranslationKey = 'dashboard.title' %} {% set menu = get_admin_main_menu() %} {% set colors = ['primary', 'info', 'success', 'mint', 'warning', 'pink', 'purple'] %} {% block body_content %} {% for menuItemRow in menu|slice(1)|batch(3) %} {% set menuItemIndex = loop.index %}
{% for menuItem in menuItemRow if menuItem.type != 'header' %} {% set actualIndex = (menuItemIndex - 1) * 3 + loop.index %} {% if menuItem.route is defined %} {% set firstLink = menuItem.route %} {% else %} {% if menuItem.children is defined and menuItem.children[0].route is defined %} {% set firstLink = menuItem.children[0].route %} {% endif %} {% endif %}
{% if firstLink is defined %} {% endif %}
{% if menuItem.icon is defined %} {% if actualIndex >= colors|length %} {% set actualIndex = actualIndex - colors|length %} {% endif %}
{% endif %}

{{menuItem.label|trans}}

{% if menuItem.description is defined %}

{{menuItem.description|trans}}

{% endif %}
{% if firstLink is defined %}
{% endif %}
{% endfor %}
{% endfor %} {% endblock %}