{% if request.user.is_authenticated %}
{% endif %}
{% for category, category_shelves in shelf_list.items %}
{% for shelf_type, shelf in category_shelves.items %}
{% endfor %}
{% endfor %}
{% if user == request.user %}
书影音日历
{{ shelf.title }}
{{ shelf.count }} {% if shelf.count > 5 %} {% trans '更多' %} {% endif %}-
{% for member in shelf.members %}
-
{{ member.item.title }}
{% empty %}
暂无记录
{% endfor %}
{% trans '创建的收藏单' %}
{{ collections_count }} {% if collections_count > 5 %} {% trans '更多' %} {% endif %} {% if user == request.user %} {% trans '新建' %} {% endif %}-
{% for collection in collections %}
-
{{ collection.title }}
{% empty %}
暂无记录
{% endfor %}
{% trans '关注的收藏单' %}
{{ liked_collections_count }} {% if liked_collections_count > 5 %} {% trans '更多' %} {% endif %}-
{% for collection in liked_collections %}
-
{{ collection.title }}
{% empty %}
暂无记录
{% endfor %}