{% extends admin.getTemplate('base_list_field') %} {% block field %}
{% if object is instanceof("App\\Entity\\DonAdherent") or (object is instanceof("App\\Entity\\Don") and object.type == 'don_adherent' ) %} {{ 'Adhérent'|trans }} : {{ object.expediteur.name }} {% elseif object is instanceof("App\\Entity\\DonPrestataire") or (object is instanceof("App\\Entity\\Don") and object.type == 'don_prestataire' ) %} {{ 'Prestataire'|trans }} : {{ object.expediteur.name }} {% endif %}
{% endblock %}