{% extends "layout.twig" %} {% block content %} {% if is_granted('ROLE_CONFIG') %}

Configuration

{% set countRoles = 0 %} {% for adminRole in ['ROLE_SETTINGS','ROLE_DEPARTMENTS', 'ROLE_THEMES', 'ROLE_SECTIONS'] %} {% set countRoles = (is_granted(adminRole)) ? countRoles + 1 : countRoles %} {% endfor %} {% if countRoles > 1 %} {% endif %} {% endif %} {# this is the page main content #} {% block subcontent %}{% endblock %} {% endblock %}