{% trans '想读的书' %}
{{ wish_book_count }} {% if wish_book_more %} {% trans '更多' %} {% endif %}-
{% for wish_book_mark in wish_book_marks %}
-
{{ wish_book_mark.book.title }}
{% empty %}
暂无记录
{% endfor %}
{% trans '在读的书' %}
{{ do_book_count }} {% if do_book_more %} {% trans '更多' %} {% endif %}-
{% for do_book_mark in do_book_marks %}
-
{{ do_book_mark.book.title }}
{% empty %}
暂无记录
{% endfor %}
{% trans '读过的书' %}
{{ collect_book_count }} {% if collect_book_more %} {% trans '更多' %} {% endif %}-
{% for collect_book_mark in collect_book_marks %}
-
{{ collect_book_mark.book.title }}
{% empty %}
暂无记录
{% endfor %}
{% trans '评论过的书籍' %}
{{ book_reviews_count }} {% if book_reviews_more %} {% trans '更多' %} {% endif %}-
{% for book_review in book_reviews %}
-
{{ book_review.book.title }}
{% empty %}
暂无记录
{% endfor %}
{% trans '想看的电影/剧集' %}
{{ wish_movie_count }} {% if wish_movie_more %} {% trans '更多' %} {% endif %}-
{% for wish_movie_mark in wish_movie_marks %}
-
{{ wish_movie_mark.movie.title }}
{% empty %}
暂无记录
{% endfor %}
{% trans '在看的电影/剧集' %}
{{ do_movie_count }} {% if do_movie_more %} {% trans '更多' %} {% endif %}-
{% for do_movie_mark in do_movie_marks %}
-
{{ do_movie_mark.movie.title }}
{% empty %}
暂无记录
{% endfor %}
{% trans '看过的电影/剧集' %}
{{ collect_movie_count }} {% if collect_movie_more %} {% trans '更多' %} {% endif %}-
{% for collect_movie_mark in collect_movie_marks %}
-
{{ collect_movie_mark.movie.title }}
{% empty %}
暂无记录
{% endfor %}
{% trans '评论过的电影/剧集' %}
{{ movie_reviews_count }} {% if movie_reviews_more %} {% trans '更多' %} {% endif %}-
{% for movie_review in movie_reviews %}
-
{{ movie_review.movie.title }}
{% empty %}
暂无记录
{% endfor %}
{% trans '想听的音乐' %}
{{ wish_music_count }} {% if wish_music_more %} {% trans '更多' %} {% endif %}-
{% for wish_music_mark in wish_music_marks %}
-
{% if wish_music_mark.type == 'album' %}
{{ wish_music_mark.album.title }}{% else %}{{ wish_music_mark.song.title }}{% endif %}
{% empty %}
暂无记录
{% endfor %}
{% trans '在听的音乐' %}
{{ do_music_count }} {% if do_music_more %} {% trans '更多' %} {% endif %}-
{% for do_music_mark in do_music_marks %}
-
{% if do_music_mark.type == 'album' %}
{{ do_music_mark.album.title }}{% else %}{{ do_music_mark.song.title }}{% endif %}
{% empty %}
暂无记录
{% endfor %}
{% trans '听过的音乐' %}
{{ collect_music_count }} {% if collect_music_more %} {% trans '更多' %} {% endif %}-
{% for collect_music_mark in collect_music_marks %}
-
{% if collect_music_mark.type == 'album' %}
{{ collect_music_mark.album.title }} {% else %}
{{ collect_music_mark.song.title }} {% endif %}
{% empty %}
暂无记录
{% endfor %}
{% trans '评论过的音乐' %}
{{ music_reviews_count }} {% if music_reviews_more %} {% trans '更多' %} {% endif %}-
{% for music_review in music_reviews %}
-
{% if music_review.type == 'album' %}
{{ music_review.album.title }} {% else %}
{{ music_review.song.title }} {% endif %}
{% empty %}
暂无记录
{% endfor %}
{% trans '想玩的游戏' %}
{{ wish_game_count }} {% if wish_game_more %} {% trans '更多' %} {% endif %}-
{% for wish_game_mark in wish_game_marks %}
-
{{ wish_game_mark.game.title }}
{% empty %}
暂无记录
{% endfor %}
{% trans '在玩的游戏' %}
{{ do_game_count }} {% if do_game_more %} {% trans '更多' %} {% endif %}-
{% for do_game_mark in do_game_marks %}
-
{{ do_game_mark.game.title }}
{% empty %}
暂无记录
{% endfor %}
{% trans '玩过的游戏' %}
{{ collect_game_count }} {% if collect_game_more %} {% trans '更多' %} {% endif %}-
{% for collect_game_mark in collect_game_marks %}
-
{{collect_game_mark.game.title }}
{% empty %}
暂无记录
{% endfor %}
{% trans '评论过的游戏' %}
{{ game_reviews_count }} {% if game_reviews_more %} {% trans '更多' %} {% endif %}-
{% for game_review in game_reviews %}
-
{{ game_review.game.title }}
{% empty %}
暂无记录
{% endfor %}
{% trans '创建的收藏单' %}
{{ collections_count }} {% if collections_more %} {% trans '更多' %} {% endif %} {% if user == request.user %} {% trans '新建' %} {% endif %}-
{% for collection in collections %}
-
{{ collection.title }}
{% empty %}
暂无记录
{% endfor %}
{% trans '关注的收藏单' %}
{{ marked_collections_count }} {% if marked_collections_more %} {% trans '更多' %} {% endif %}-
{% for collection in marked_collections %}
-
{{ collection.title }}
{% empty %}
暂无记录
{% endfor %}