diff --git a/inventaire.html b/inventaire.html
index 431b8d0..c5680f9 100644
--- a/inventaire.html
+++ b/inventaire.html
@@ -6,158 +6,173 @@
{{:include file="./_calcul_dispo.html" keep="cumul_mvt,category_keys,equipments"}}
{{* Afficher les résultats *}}
-
{{if $equipments === null}}
Aucun matériel.
{{else}}
-
-
- Matériels dont l'association est propriétaire
-
-
+ {{/if}}
+ {{/foreach}}
+
+
+ {{/if}}
+
+ {{if $mat_non_prop}}
+
+
+ Matériels dont l'association n'est pas propriétaire
+
+
+
+ {{* itérer sur les catégories *}}
+ {{#foreach from=$cumul_mvt key="cat_key" item="cat_elem"}}
+
+ {{* vérifier s'il y a des matériels dans cette catégorie *}}
+ {{:assign present=false}}
+ {{if $cat_elem|keys|has:"eqpmt"}}
+ {{#foreach from=$cat_elem.eqpmt key="eqpmt_key" item="eqpmt"}}
+ {{if $eqpmt.nonproprio !== null && $eqpmt.nonproprio !== 0}}
+ {{:assign present=true}}
+ {{:break}}
+ {{/if}}
+ {{/foreach}}
+ {{/if}}
+
+ {{if $present}}
+ {{if $print_cat_name}}
+
+
+ {{$cat_elem.name}}
+ {{/if}}
+
+
+
+
+
+ Désignation |
+ Quantité |
+ |
+
+
+
+
+ {{* itérer sur les matériels de la catégorie *}}
+ {{#foreach from=$cat_elem.eqpmt key="eqpmt_key" item="eqpmt"}}
+ {{:assign keys=$eqpmt|keys}}
+ {{if "nonproprio"|in:$keys && $eqpmt.nonproprio !== 0}}
+ {{:assign dispo="%d-%d"|math:$eqpmt.stock:$eqpmt.exterieur}}
+
+ {{$eqpmt.designation}} |
+ {{$eqpmt.nonproprio}} |
+
+ {{:linkbutton
+ label="Mouvements"
+ href="historique.html?key=%s"|args:$eqpmt_key
+ shape="table"
+ target="_dialog"}}
+ {{:linkbutton
+ label="Modifier"
+ href="modifier_materiel.html?key=%s"|args:$eqpmt_key
+ shape="edit"
+ target="_dialog"}}
+ |
+
+ {{/if}}
+ {{else}}
+ Il n'y a aucun matériel dans cette catégorie.
+ {{/foreach}}
+
+
+
+ {{/if}}
+ {{/foreach}}
+
+
+ {{/if}}
{{/if}}