vendor/easycorp/easyadmin-bundle/src/Resources/views/crud/field/array.html.twig line 1

Open in your IDE?
  1. {# @var ea \EasyCorp\Bundle\EasyAdminBundle\Context\AdminContext #}
  2. {# @var field \EasyCorp\Bundle\EasyAdminBundle\Dto\FieldDto #}
  3. {# @var entity \EasyCorp\Bundle\EasyAdminBundle\Dto\EntityDto #}
  4. {% if ea.crud.currentAction == 'detail' %}
  5.     <ul>
  6.         {% for item in field.value %}
  7.             <li>{{ item }}</li>
  8.         {% endfor %}
  9.     </ul>
  10. {% else %}
  11.     {{ field.formattedValue }}
  12. {% endif %}