{% extends 'admin/base.html.twig' %}
{% block title %}adminVolumes{% endblock %}
{% block body %}
Volumes
{{ 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' }) }} |
Volume réalisé |
Volume souhaité |
Volume annuel |
Volume annulé |
Volume déployé |
{% set j = 0 %}
{% for company in companies %}
{{ company.getId() }} |
{{ company.getname() }}
|
{% set volumes = company.getVolumes() %}
{% for volume in volumes %}
{{ volume.volumePerformed }} |
{{ volume.volumeRequired }} - {{ volume.definition }} |
{{ volume.annual }} |
{{ volume.volumeCanceled }} |
{{ volume.volumedeployed }} |
{% endfor %}
{% set j = j + 1 %}
{% endfor %}
{{ knp_pagination_render(companies) }}
{% endblock %}
{% block javascript %}
{% endblock %}