{% extends "agenda_culturel/page.html" %} {% block title %}{% block og_title %}Les étiquettes des événements{% endblock %}{% endblock %} {% load cat_extra %} {% load utils_extra %} {% load tag_extra %} {% load cache %} {% block fluid %}{% endblock %} {% block entete_header %} {% css_categories %} {% endblock %} {% block content %} {% with cache_timeout=user.is_authenticated|yesno:"30,600" %} {% cache cache_timeout alltags LANGUAGE_CODE %}

Les étiquettes des événements

{% if tags %} {% for tag in tags %}
{{ tag.name }}
{{ tag.description|safe }}

{% if tag.category %}Cette étiquette est une sous-catégorie de {{ tag.category| small_cat:tag.category.get_absolute_url }}{% endif %}

{% endfor %} {% else %}

Il n'y a aucune étiquette disposant d'une description.

{% endif %}
{% endcache %} {% endwith %} {% endblock %}