{% extends "base.html" %} {% load custom_filters %} {% load static %} {% block contenu %} {% include "header.html" %} {% include "leftbar.html" %} {% include "rightbar.html" %} {% include "chat.html" %} Liste des Entrepôts Total : {{ entrepots.count }} entrepôts Accueil Ajouter un entrepôt Liste des localisations Code entrepôt Nom de l'entrepôt Localisation Superficie Capacité de stockage Actions {% for entrepot in entrepots %} {{ entrepot.code_entrepot }} {{ entrepot.nom }} {{ entrepot.localisation.localisation }} {{ entrepot.superficie }} {{ entrepot.capacite }} {% endfor %} {% endblock %}