{% set admin_chamilo_announcements_disable = 'admin_chamilo_announcements_disable'|api_get_configuration_value %} {% block content %} {% autoescape false %} {% if not admin_chamilo_announcements_disable %} {% endif %}
{% for block_item in blocks_admin %}
{{ block_item.icon }} {{ block_item.label }}
{{ block_item.description }}
{% if block_item.items is not empty %}
    {% for url in block_item.items %} {% if url.url is not empty %}
  • {{ url.label }}
  • {% endif %} {% endfor %}
{% endif %} {% if block_item.extra is not null %}
{{ block_item.extra }}
{% endif %}
{% endfor %}
{% for role in app.user.roles %} {% set role = role | lower | replace ({ 'role_' : ''}) %} {% if role in ['global_admin'] %} {% include '@ChamiloTheme/Admin/' ~ role ~ '/role_index.html.twig' %} {% endif %} {% endfor %}
{% if is_granted('ROLE_ADMIN') %} {% endif %} {% endautoescape %} {% endblock %}