diff --git a/_nav.html b/_nav.html
index c49a597..43be605 100644
--- a/_nav.html
+++ b/_nav.html
@@ -15,6 +15,7 @@
Matériels permanents
Matériels temporaires
+
{{if $subsubcurrent == 'mouvements'}}
- {{$eqpmt}} ({{$category}})
diff --git a/inventaire.html b/inventaire.html
index b1f8038..085bcda 100644
--- a/inventaire.html
+++ b/inventaire.html
@@ -7,18 +7,18 @@
*}}
{{* Extraire et compiler les infos de la base *}}
-{{:include file="./_calcul_dispo.html" keep="cumul_mvt,category_keys,equipments"}}
+{{:include file="./_calcul_dispo.html" keep="cumul_mvt,equipments"}}
{{* Vérifier s'il y a au moins un matériel propriété de l'asso *}}
-{{:assign mat_prop=false}}
+{{:assign mat_present=false}}
{{#foreach from=$equipments key=key item=eqpmt}}
{{if $eqpmt|has_key:"stock"}}
- {{:assign mat_prop=true}}
+ {{:assign mat_present=true}}
{{:break}}
{{/if}}
{{/foreach}}
-{{if $mat_prop}}
+{{if $mat_present}}
{{* Sélecteur catégories *}}
Matériels propriété de l'association
+
{{#list
select="
$$.date AS 'Date' ;
diff --git a/inventaire_nonprop.html b/inventaire_nonprop.html
index dfba20d..e468028 100644
--- a/inventaire_nonprop.html
+++ b/inventaire_nonprop.html
@@ -7,18 +7,18 @@
*}}
{{* Extraire et compiler les infos de la base *}}
-{{:include file="./_calcul_dispo.html" keep="cumul_mvt,category_keys,equipments"}}
+{{:include file="./_calcul_dispo.html" keep="cumul_mvt,equipments"}}
{{* Vérifier s'il y a au moins un matériel non propriété de l'asso *}}
-{{:assign mat_non_prop=false}}
+{{:assign mat_present=false}}
{{#foreach from=$equipments key=key item=eqpmt}}
{{if $eqpmt|has_key:"nonproprio"}}
- {{:assign mat_non_prop=true}}
+ {{:assign mat_present=true}}
{{:break}}
{{/if}}
{{/foreach}}
-{{if $mat_non_prop}}
+{{if $mat_present}}
{{* Sélecteur catégories *}}