{% extends 'admin/base.html.twig' %}
{% block title %}adminVolumes{% endblock %}
{% block body %}
{{ 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' }) }} |
Zone |
{% for act in activities %}
{{ act.name}} |
{% endfor %}
{% set j = 0 %}
{% for company in companies %}
{% set i = 0 %}
{% set intervZones = company.getInterventionZone() %}
{% if intervZones|length > 1 %}
{% for intervZone in intervZones %}
{% if i == 0 %}
{% else %}
{% endif %}
{{ company.getId() }} |
{{ company.getname() }}
|
{{ intervZone.postcode }} |
{% set entry = 0 %}
{% for act in activities %}
{% for item in company.getActivity() %}
{% if item.name == act.name %}
{% set entry = 1 %}
{% endif %}
{% endfor %}
{% if entry == 1 %}
{% set entry = 0 %}
1
{% else %}
0
{% endif %}
|
{% endfor %}
{% set i = i + 1 %}
{% endfor %}
{% else %}
{{ company.getId() }} |
{{ company.getname() }}
|
{% for intervZone in intervZones %}
{{ intervZone.postcode }} |
{% endfor %}
{% endif %}
{% set j = j + 1 %}
{% endfor %}
{{ knp_pagination_render(companies) }}
{% endblock %}
{% block javascript %}
{% endblock %}