{% extends "BASE.html" %} {% load static %} {% load tags_personnaliser %} {% block page_titre %} SGL - Gestion des produits {% endblock %} {% block "contenu" %}

MES DEMANDES

{% for demande in mes_demandes %}
{% if demande.produit.image %} {% else %} Image par défaut {% endif %}
{{ demande.produit.libelle }}

{{ demande.user.user.first_name }} {{ demande.user.user.last_name }}

{% empty %}

Aucune demande en cours.

{% endfor %}

LISTE DES PRODUITS

{% if user|has_group:"logistique" %} Rapport de mouvement de stock {% endif %}
{% for produit in page_obj %}
{% if produit.image %} {{ produit.libelle }} {% else %} Image par défaut {% endif %}
{{ produit.libelle }}
{% if user|has_group:"logistique" %}

Quantite en stock: {{ produit.stockActuel }}

{% endif %}
{% empty %}

Aucun produit disponible.

{% endfor %}
{% include "gestion_produit/parts/modal_demander.html" %} {% include "gestion_produit/parts/modal_commander.html" %} {% include "gestion_produit/parts/modal_creation_categorie.html" %} {% include "gestion_produit/parts/modal_creation_produit.html" %} {% include "gestion_produit/parts/modal_details_demandes.html" %} {% include "gestion_produit/parts/modal_liste_de_toutes_les_demandes.html" %} {% include "gestion_produit/parts/modal_mes_demandes.html" %} {% include "gestion_produit/parts/modal_modification_informations_produits.html" %} {% endblock %} {% block "js" %} {% endblock %}