{% extends 'base.html.twig' %} {% block title %}Les produits{% endblock %} {% form_theme form 'bootstrap_4_horizontal_layout.html.twig' %} {% block title_page %}Les produits{% endblock %} {% block container_start %} {% if is_granted("ROLE_SEARCH_PRODUCT") %} {{form_start(form)}}
{{ form_row(form.name, { 'attr': {'placeholder': "Nom"} }) }}
{{ form_row(form.description, { 'attr': {'placeholder': "Description"} }) }}
{{ form_row(form.reference, { 'attr': {'placeholder': "Référence"} }) }}
{{form_end(form)}} {% endif %}
{% if is_granted("ROLE_CREATE_PRODUCT") %} {% endif %}
{% set i = 1 %} {% for product in products %} {% set i = i + 1 %} {% endfor %}
# Création MAJ Référence Préfixe Nom Description
{{ product.id }} {% if product.filename %} image-product {% else %} Image-non-disponible {% endif %} {{ product.createdAt|date("d/m/Y") }} {{ product.updatedAt|date("d/m/Y") }} {{ product.reference}} {{ product.prefixReference}} {{ product.name }} {{ product.description }} {% if is_granted("ROLE_VIEW_PRODUCT") %} {% endif %} {% if is_granted("ROLE_EDIT_PRODUCT") %} {% endif %}
{% endblock %}