{% extends 'base.html' %} {% from 'bootstrap5/pagination.html' import render_pagination %} {% from 'macros.html' import user_card with context %} {% block title %}Collectors{% endblock %} {% block content %}

{{ collections|length }} Collectors

{% for collection in collections %} {{ user_card(user=collection.user) }} {% endfor %}
{% if collections %} {% endif %} {% endblock %}