{% extends 'base.html.twig' %} {% block title %}{{ pageTitle }}{% endblock %} {% block PageTitle %}{{ pageTitle }}{% endblock %} {% block body %} {% include "shared-components/_search_data.html.twig" with { form:form ?? null } only %}
Exporter en csv {% for client in clients %}
{{ client.firstname}} {{ client.lastname}}
    {% for website in client.getWebsite %}
  • {{ website.company }}
  • {% endfor %}
Notes
{% include "shared-components/_edit_delete_toolsbar.html.twig" with { deleteId:client.id, refId: '', name: client.firstname, designation:'client', route:'client', editRoute:path('client.addorupdate',{id:client.id}) } only %}
{% endfor %}
{% endblock %}