{% extends 'base.html.twig' %} {% block title %} {% trans %}COSAP - Marques{% 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/Marque/action.html.twig') }}
{% endif %}
{% trans %}Liste des Marques{% endtrans %} {{ marques.getTotalItemCount }}
{% if app.user and is_granted('ROLE_AJOUTER_MARQUE') %} {% trans %}nouvel enregistrement{% endtrans %} {% endif %}
{% if not marques|length %} {% else %}
{% if app.user and (is_granted('ROLE_MODIFIER_MARQUE') or is_granted('ROLE_SUPPRIMER_MARQUE')) %} {% endif %} {% for marque in marques %} {% if app.user and (is_granted('ROLE_MODIFIER_MARQUE') or is_granted('ROLE_SUPPRIMER_MARQUE')) %} {% endif %} {% endfor %}
{% trans %}Label{% endtrans %} {% trans %}équipements{% endtrans %}{% trans %}Actions{% endtrans %}
{{ marque.label }} {% for equipement in marque.equipementsValue %} {{ equipement }} {% endfor %}
{% endif %}
{% endblock %} {% block javascripts %} {{ parent() }} {% include('Stocks/Marque/ajax/delete.html.twig') %} {% endblock %}