{% if not session["user_logged"] %}
|
Attention:
Veuillez vous identifier pour visualiser les modifications
|
{% else %}
|
Catégories ajoutées
|
{% if created_cat_list|length == 0 %}
| Aucune catégorie n'a été ajoutée pour l'instant. |
{% else %}
{% for cat in created_cat_list %}
| {{ cat.cat_label }} |
{{ cat.cat_description}} |
|
{% if cat.cat_properties|length == 0 %} - Aucune autre propriété
{% else %}
{% for (predicate, object) in cat.cat_properties %}
- {{ config["PROPERTY_LIST"][predicate]["descriptive_label_fr"] }}
-
{% if config["PROPERTY_LIST"][predicate]["object_type"]=="uriref-category" %}
{% for cat in total_cat_list %}
{% if object == config["CATEGORY_NAMESPACE"]+cat.cat_id %}
{{ cat.cat_label }}
{% endif %}
{% endfor %}
{% elif config["PROPERTY_LIST"][predicate]["object_type"]=="uriref-link" %}
{{ object }}
{% else %}
{{ object }}
{% endif %}
{% endfor %}
{% endif %}
|
{% endfor %}
{% endif %}
|
Catégories modifiées
|
{% if modified_cat_list|length == 0 %}
| Aucune catégorie n'a été modifiée pour l'instant. |
{% else %}
{% for cat in modified_cat_list %}
| {{ cat.cat_label }} |
{{ cat.cat_description}} |
|
{% if cat.cat_properties|length == 0 %} - Aucune autre propriété
{% else %}
{% for (predicate, object) in cat.cat_properties %}
- {{ config["PROPERTY_LIST"][predicate]["descriptive_label_fr"] }}
-
{% if config["PROPERTY_LIST"][predicate]["object_type"]=="uriref-category" %}
{% for cat in total_cat_list %}
{% if object == config["CATEGORY_NAMESPACE"]+cat.cat_id %}
{{ cat.cat_label }}
{% endif %}
{% endfor %}
{% elif config["PROPERTY_LIST"][predicate]["object_type"]=="uriref-link" %}
{{ object }}
{% else %}
{{ object }}
{% endif %}
{% endfor %}
{% endif %}
|
{% endfor %}
{% endif %}
|
Catégories supprimées
|
{% if deleted_cat_namelist|length == 0 %}
| Aucune catégorie n'a été supprimée pour l'instant. |
{% else %}
{% for deleted_cat in deleted_cat_namelist %}
{% for existing_cat in existing_cat_list %}
{% if existing_cat.cat_id == deleted_cat %}
| {{ existing_cat.cat_label }} |
Cette catégorie va être supprimée quand vous soumettrez vos modifications. |
|
{% endif %}
{% endfor %}
{% endfor %}
{% endif %}
{% endif %}