{% extends 'base.html' %} {% from 'bootstrap/pagination.html' import render_pagination %} {% from 'macros.html' import user_card with context %} {% block title %}收藏者{% endblock %} {% block content %}

{{ photo.collectors|length }} 收藏者

{% for collect in collects %} {{ user_card(user=collect.collector) }} {% endfor %}
{% if collects %} {% endif %} {% endblock %}