{% extends 'base.html.twig' %} {% block title %}Gestion des puces{% endblock %} {% block body %}

Gestion des puces

Ajouter une puce
{% if stock < 3 %}
Stock de puces faible : {{ stock }} disponible(s).
{% endif %}
{% for puce in pagination.items %}{% else %}{% endfor %}
NuméroTypeCatégorieStatutPrix
{{ puce.numero }}{{ puce.type }}{{ puce.categorie }}{{ puce.statut }}{{ puce.prixVente }}{% if puce.statut == 'en_stock' or puce.statut == 'reservee' %}
{% endif %}{% if puce.statut != 'activee' %}
{% endif %}
Aucune puce enregistrée.
{% include '_partials/_pagination.html.twig' %} {% endblock %}