templates/sonata/list_fields/list_user_roles.html.twig line 1

Open in your IDE?
  1. {% extends '@SonataAdmin/CRUD/base_list_field.html.twig' %}
  2. {% block field %}
  3.     {% for r in object.roles %}
  4.         {% if r == 'ROLE_SUPERADMIN' %}
  5.             <small class="label bg-blue">SUPER ADMIN</small>
  6.         {% elseif r == 'ROLE_MASTER' %}
  7.             <small class="label bg-yellow">MASTER</small>
  8.         {% elseif r == 'ROLE_ADMIN' %}
  9.             <small class="label bg-blue">ADMIN</small>
  10.         {% elseif r == 'ROLE_COMMERCIAL' %}
  11.             <small class="label bg-blue">NĂ©gociateur/trice</small>
  12.         {% elseif r == 'ROLE_DIRECTEUR' %}
  13.             <small class="label bg-blue">Directeur/trice Commercial(e)</small>
  14.         {% elseif r == 'ROLE_RESPONSABLE' %}
  15.             <small class="label bg-blue">Responsable Prescription</small>
  16.         {% elseif r == 'ROLE_PARTENAIRE' %}
  17.             <small class="label bg-green">Partenaire/Prescripteur</small>
  18.         {% elseif r == 'ROLE_SAISIE' %}
  19.             <small class="label bg-blue">OpĂ©rateur/trice de Saisie</small>
  20.         {% endif %}
  21.     {% endfor %}
  22. {% endblock %}