{% extends "base.html" %} {% load tapeforms %} {% block titlebuttons %}
{% if can_add_association %}
Ajouter une association
{% endif %}
{% form filter.form %}
{% endblock %} {% block content %} {% if not object_list and not can_add_association %}

Il n'y a aucune association pour le moment. Revenez plus tard !

{% else %}
Statistiques sur {{ instance_name }}
Nombre d'associations : {{ asso_count }} Nombre d'utilisateurs : {{ user_count }} Nombre d'actes de bénévolat saisis : {{ benevalo_count }}
{% for association in object_list %}

{% if association.logo %} {{ association }} {% else %} {{ association }} {% endif %}

{% if not association.is_active %} En modération {% endif %}
{% if association.description %}
{{ association.description|truncatechars:120|linebreaksbr }}
{% endif %}
{% endfor %} {% if can_add_association %}
Ajouter une association
{% endif %}
{% endif %} {% endblock %}