{% extends 'admin/base.html.twig' %}
{% block title %}adminContact{% endblock %}
{% block body %}
Contacts
{{ 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 |
{% 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 %}
{{ company.getId() }} |
{{ company.getname() }}
|
{{ contact.lastname }} {{ contact.firstname }} |
{{ contact.email }} |
{{ contact.phone }} |
{{ contact.mobile }} |
{% set i = i + 1 %}
{% endfor %}
{% else %}
{{ company.getId() }} |
{{ company.getname() }}
|
{% for contact in contacts %}
{{ contact.lastname }} {{ contact.firstname }} |
{{ contact.email }} |
{{ contact.phone }} |
{{ contact.mobile }} |
{% endfor %}
{% endif %}
{% set j = j + 1 %}
{% endfor %}
{{ knp_pagination_render(companies) }}
{% endblock %}
{% block javascript %}
{% endblock %}