{% 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 %}
{{ include('Stocks/Modele/action.html.twig') }}
{% endif %}
{% trans %}Liste des Modèles{% endtrans %} {{ modeles.getTotalItemCount }}
{% if app.user and is_granted('ROLE_AJOUTER_MODELE') %} {% trans %}nouvel enregistrement{% endtrans %} {% endif %}
{% if not modeles|length %} {% else %}
{% if app.user and (is_granted('ROLE_MODIFIER_MODELE') or is_granted('ROLE_SUPPRIMER_MODELE')) %} {% endif %} {% for modele in modeles %} {% if app.user and (is_granted('ROLE_MODIFIER_MODELE') or is_granted('ROLE_SUPPRIMER_MODELE')) %} {% endif %} {% endfor %}
{% trans %}Label{% endtrans %} {% trans %}équipements{% endtrans %}{% trans %}Actions{% endtrans %}
{{ modele.label }} {% for equipement in modele.equipementsValue %} {{ equipement }} {% endfor %}
{% endif %}
{% endblock %} {% block javascripts %} {{ parent() }} {% include('Stocks/Modele/ajax/delete.html.twig') %} {% endblock %}