diff --git a/html/export_yaml_to_html.py b/html/export_yaml_to_html.py
index 8b6db43..40ea420 100644
--- a/html/export_yaml_to_html.py
+++ b/html/export_yaml_to_html.py
@@ -120,11 +120,11 @@ template = env.from_string("""
{{categorie.capitalize()}} |
{#- Gestion des tableaux #}
- {% if categorie == "motscles" or categorie == "ressources" -%}
+ {% if categorie == "motscles" -%}
{% for mot in valeur %}{{mot}}{% endfor %}
{#- Gestion des saes #}
- {% elif categorie == "sae" %}
-
+ {% elif categorie == "sae" or categorie == "ressources" %}
+
{#- Gestion des ACS #}
{% elif categorie == "acs" -%}
{% for rt,acs in valeur.items() %}{% for ac in acs %}{{ac}}{% endfor %}{% endfor %}
|