{# @var ea \EasyCorp\Bundle\EasyAdminBundle\Context\AdminContext #} {# @var field \EasyCorp\Bundle\EasyAdminBundle\Dto\FieldDto #} {# @var entity \EasyCorp\Bundle\EasyAdminBundle\Dto\EntityDto #} {% if 'toMany' == field.customOptions.get('associationType') %} {% if field.formattedValue is iterable %} {% for formattedValue in field.formattedValue %} {{ formattedValue }} {% endfor %} {% else %} {{ field.formattedValue }} {% endif %} {% else %} {% if field.customOptions.get('relatedUrl') is not null %} {{ field.formattedValue }} {% else %} {{ field.formattedValue }} {% endif %} {% endif %}