{% extends 'base.html' %} {% from 'bootstrap/pagination.html' import render_pagination %} {% from 'macros.html' import photo_card %} {% block title %}{{ user.name }}的收藏{% endblock %} {% block content %} {% include 'user/_header.html' %}
{% if user.public_collections or current_user == user %} {% if collects %} {% for collect in collects %} {{ photo_card(collect.collected) }} {% endfor %} {% else %}

无收藏

{% endif %} {% else %}

该用户的收藏是私人的

{% endif %}
{% if collects %} {% endif %} {% endblock %}