{% trans_default_domain 'admin' %}
{# @var ea \EasyCorp\Bundle\EasyAdminBundle\Context\AdminContext #}
{# @var field \EasyCorp\Bundle\EasyAdminBundle\Dto\FieldDto #}
{# @var entity \EasyCorp\Bundle\EasyAdminBundle\Dto\EntityDto #}
{% if field.value == NULL %}
{{ include('@EasyAdmin/label/null.html.twig') }}
{% else %}
{% if ea().crud.currentAction == 'detail' %}
{{ field.formattedValue|raw|nl2br }}
{% if field.value is not empty %}
{{- include('admin/field/vimeo/preview.html.twig', {vimeoId:field.value}, with_context=false) -}}
{% endif %}
{% else %}
{{ field.formattedValue|raw }}
{% endif %}
{% endif %}