templates/CRUD/list__modules.html.twig line 1

Open in your IDE?
  1. {% extends '@SonataAdmin/CRUD/base_list_field.html.twig' %}
  2. {% block field %}
  3.     {% if attribute(object, 'getModules') is defined %}
  4.         {% for module in object.getModules %}
  5.             <span class="label label-success" style="background-color:{{ module.GetParamsDecoded['color'] }} !important;">{{ module.name }}</span>
  6.         {% endfor %}
  7.     {% elseif attribute(object, 'getModule') is defined %}
  8.         <span class="label label-success" style="background-color:{{ object.getModule().GetParamsDecoded['color'] }} !important;">{{ object.getModule().name }}</span>
  9.     {% endif %}
  10. {% endblock %}