vendor/easycorp/easyadmin-bundle/src/Resources/views/crud/field/association.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 'toMany' == field.customOptions.get('associationType') %}
  5. <span class="badge badge-secondary">{{ field.formattedValue }}</span>
  6. {% else %}
  7. {% if field.customOptions.get('relatedUrl') is not null %}
  8. <a href="{{ field.customOptions.get('relatedUrl') }}">{{ field.formattedValue }}</a>
  9. {% else %}
  10. {{ field.formattedValue }}
  11. {% endif %}
  12. {% endif %}