{% extends 'admin/base.html.twig' %} {% block title %}adminContact{% endblock %} {% block body %}

Contacts

{% set j = 0 %} {% for company in companies %} {% set i = 0 %} {% set contacts = company.getContacts() %} {% if contacts|length > 1 %} {% for contact in contacts %} {% if i == 0 %} {% else %} {% endif %} {% set i = i + 1 %} {% endfor %} {% else %} {% for contact in contacts %} {% endfor %} {% endif %} {% set j = j + 1 %} {% endfor %}
{{ knp_pagination_sortable(companies, 'Id', 'id', {}, {'direction': companies.isSorted('id') and 'asc' == companies.direction ? 'desc' : 'asc' }) }} {{ knp_pagination_sortable(companies, 'Nom de l\'entreprise', 'name', {}, {'direction': companies.isSorted('name') and 'asc' == companies.direction ? 'desc' : 'asc' }) }} Nom email Téléphone fixe Téléphone Mobile
{{ company.getId() }} {{ company.getname() }} {{ contact.lastname }} {{ contact.firstname }} {{ contact.email }} {{ contact.phone }} {{ contact.mobile }}
{{ company.getId() }} {{ company.getname() }} {{ contact.lastname }} {{ contact.firstname }} {{ contact.email }} {{ contact.phone }} {{ contact.mobile }}
{% endblock %} {% block javascript %} {% endblock %}