{% if not session["user_logged"] or not session["user_can_edit"] %} {% set readonly="readonly" %} {% else %} {% set readonly=False %} {% endif %} Liste des catégories
{% if session["user_logged"] and not session["user_can_edit"] %} {% endif %}

Liste des catégories existantes

{% if cat_list|length == 0 %} {% else %} {% for cat in cat_list %} {% endfor %} {% endif %}
Category Label Category Description
Aucune catégorie n'a été créée pour l'instant. {% if not readonly %}Créer une catégorie{% endif %}
{{ cat.cat_label }} {{ cat.cat_description}}
{% if cat.cat_properties|length == 0 %}
Aucune autre propriété
{% else %} {% for (predicate, object) in cat.cat_properties %}
{{ predicate }}
{% if config["PROPERTY_LIST"][predicate]["object_type"]=="uriref-category" %} {% for cat in cat_list %} {% if object == config["ONTOLOGY_NAMESPACE"]+cat.cat_id %} {{ cat.cat_label }} {% endif %} {% endfor %} {% else %} {{ object }} {% endif %}
{% endfor %} {% endif %}