收藏夹

{% if not current_user.collects.all() %}
创建
{% else %}

添加到收藏夹

{% for collect in current_user.collects %} {% if collect.is_privacy %} 私密 {% else %} 公开 {% endif %}
{% endfor %}
{% endif %}