vendor/easycorp/easyadmin-bundle/src/Resources/views/crud/field/country.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 field.customOptions.get('showFlag') %}
  5.     {% if field.customOption('flagCode') is not null %}
  6.         <img class="country-flag" alt="{{ field.formattedValue }}" src="{{ asset('bundles/easyadmin/images/flags/' ~ field.customOption('flagCode') ~ '.png') }}">
  7.     {% endif %}
  8. {% endif %}
  9. {% if field.customOptions.get('showName') %}
  10.     {{ field.formattedValue ?? '' }}
  11. {% endif %}