{% extends 'aircraft/base.html.twig' %}
{% block title %} {{ parent() }} - Constructeurs{% endblock %}
{% set aircraft_section_title = 'Gestion des constructeurs des appareils' %}
{% block aircraftContent %}
{% if manufacturersChart is defined and manufacturersChart.data.arrayToDataTable %}
Répartition des appareils en fonction des constructeurs
{% if is_granted('edit', 'aircraft') or is_granted('edit', 'aircraft') or is_granted('view', 'aircraft') %}
Actions
{% endif %}
{% for manufacturer in manufacturers %}
{{ manufacturer.id }}
{{ manufacturer.name }}
{{ manufacturer.aircrafts|length }}
{% if is_granted('edit', 'aircraft') or is_granted('edit', 'aircraft') or is_granted('view', 'aircraft') %}
{% if is_granted('view', 'aircraft') %}
{% endif %}
{% if is_granted('edit', 'aircraft') %}
{% endif %}
{% if is_granted('delete', 'aircraft') %}
{% include "aircraft/manufacturer_aircraft/_delete_form.html.twig" %}
{% endif %}
{% endif %}
{% else %}
Aucun constructeur trouvé
{% endfor %}
{# List section #}
{% endblock %}
{% block javascripts %}
{% if manufacturersChart is defined and manufacturersChart.data.arrayToDataTable %}
{% endif %}
{% endblock %} {# Used for display graph #}