{% extends "associations/list.html" %} {% load thumbnail %} {% block content %} {% if object_list %} {% if create_url %} Votre association n'existe pas encore ? Vous pouvez la créer ou l'importer depuis une autre instance. {% endif %}
{% for object in object_list %}
{% if object.logo %}
{% thumbnail object.logo "110x110" format="WEBP" upscale=False as img %} {% endthumbnail %}
{% endif %}

{% endfor %}
{% else %} {{ block.super }} {% endif %} {% endblock %}