{% for action in config.actions %}
{% include action.template with { 'config': action, 'entity': config.entity } %}
{% endfor %}
{% if config.label is defined %}
{{ config.label|trans }}
{% endif %}
{% trans %}admin.dashboards.home.tabs.labels.researchers{% endtrans %}
{% for researcher in config.researchers %}
{{ researcher.name ~ ' ' ~ researcher.surname }}
{% endfor %}
{% for element in config.children %}
{% if is_granted(element.roles) %}
{% include element.template with { 'config': element } %}
{% endif %}
{% endfor %}