{% extends "::layout.html.twig" %} {% block page_content %} {% autoescape false %}
{% for block_item in blocks %}

{{ block_item.icon }} {{ block_item.label }}

{{ block_item.search_form }}
{% 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 "ChamiloCoreBundle:Admin:" ~ role ~ "/role_index.html.twig" %} {% endif %} {% endfor %}
{% if is_granted('ROLE_ADMIN') %}

{{ 'VersionCheck' | trans }}

{% endif %} {% endautoescape %} {% endblock %}