{% extends 'base.html.twig' %} {% block title %}Produit {{product.name}}{% endblock %} {% block title_page %}Produit : {{product.name}}{% endblock %} {% block container_start %}

{% trans %}Informations produit{% endtrans %}

{% if is_granted("ROLE_EDIT_PRODUCT") %} {% endif %} {% if is_granted("ROLE_DELETE_PRODUCT") %} {% endif %}
{% if product.filename %} image-product {% else %} Image-non-disponible {% endif %}
Identifiant
{{product.id}}
Nom
{{product.name}}
Référence
{{product.reference}}
Préfixe
{{product.reference}}
Catégorie(s)
    {% for category in product.category %}
  • {{category.name}}
  • {% endfor %}
Pack
{% if product.isPack %} Oui {% else %} Non {% endif %}
Création
{{product.createdAt|date("d/m/Y")}}
Dernière MAJ :
{{product.updatedAt|date("d/m/Y")}}
Produit suivis :
{% if product.follow == 0 %} Non {% else %} Oui {% endif %}
Etat :
{{product.state.name}}
Descritpion
{{product.description}}
{#
Print
#}
{% endblock %}