收藏夹

{% set collects = current_user.collects.all() %} {% if not collects %}
创建
{% else %}
{{ form.hidden_tag() }}

添加到收藏夹

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