{# @var field \EasyCorp\Bundle\EasyAdminBundle\Dto\FieldDto #} {# this template renders the opening HTML tags of a column on the 'detail' page; the closing tags are rendered by 'crud/detail/column_close' #} {% set field_icon = field.getCustomOption('icon') %} {% set has_label = field.label is ea_is_not_empty %} {% set column_has_title = field_icon is not null or has_label or field.help is not null %}
{% if column_has_title %}
{% if field_icon %}{% endif %} {% if has_label %}{{ field.label|trans(domain: ea().i18n.translationDomain)|raw }}{% endif %}
{% if field.help is not null %}
{{ field.help|trans(domain: ea().i18n.translationDomain)|raw }}
{% endif %}
{% endif %}