{% extends 'base.html.twig' %}
{% block title %} {% trans %}COSAP - Modèles{% endtrans %} {% endblock %}
{% block body %}
{{ parent() }}
{% if action == "edit" or action == "add" %}
{% if action == "add" %} {% trans %}Nouvel{% endtrans %} {% else %} {% trans %}Modifier{% endtrans %} {% endif %} {% trans %}Enregistrement{% endtrans %}
{% trans %}Liste des Modèles{% endtrans %} {{ modeles.getTotalItemCount }}
{% for modele in modeles %}
{% trans %}Label{% endtrans %}
{% trans %}équipements{% endtrans %}
{% if app.user and (is_granted('ROLE_MODIFIER_MODELE') or is_granted('ROLE_SUPPRIMER_MODELE')) %}
{% trans %}Actions{% endtrans %}
{% endif %}
{% endfor %}
{{ modele.label }}
{% for equipement in modele.equipementsValue %}
{{ equipement }}
{% endfor %}
{% if app.user and (is_granted('ROLE_MODIFIER_MODELE') or is_granted('ROLE_SUPPRIMER_MODELE')) %}
{% endif %}