{% trans '想读的书' %}
{% if wish_books_more %} {% trans '更多' %} {% endif %}-
{% for wish_book_mark in wish_book_marks %}
-
{{ wish_book_mark.book.title }}
{% empty %}
暂无记录
{% endfor %}
{% trans '在读的书' %}
{% if do_books_more %} {% trans '更多' %} {% endif %}-
{% for do_book_mark in do_book_marks %}
-
{{ do_book_mark.book.title }}
{% empty %}
暂无记录
{% endfor %}
{% trans '读过的书' %}
{% if collect_books_more %} {% trans '更多' %} {% endif %}-
{% for collect_book_mark in collect_book_marks %}
-
{{ collect_book_mark.book.title }}
{% empty %}
暂无记录
{% endfor %}
{% trans '想看的电影/剧集' %}
{% if wish_music_more %} {% trans '更多' %} {% endif %}-
{% for wish_movie_mark in wish_movie_marks %}
-
{{ wish_movie_mark.movie.title }}
{% empty %}
暂无记录
{% endfor %}
{% trans '在看的电影/剧集' %}
{% if do_movies_more %} {% trans '更多' %} {% endif %}-
{% for do_movie_mark in do_movie_marks %}
-
{{ do_movie_mark.movie.title }}
{% empty %}
暂无记录
{% endfor %}
{% trans '看过的电影/剧集' %}
{% if collect_movies_more %} {% trans '更多' %} {% endif %}-
{% for collect_movie_mark in collect_movie_marks %}
-
{{ collect_movie_mark.movie.title }}
{% empty %}
暂无记录
{% endfor %}
{% trans '想听的音乐' %}
{% 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 '在听的音乐' %}
{% 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 '听过的音乐' %}
{% 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 '关注的人' %}
{% trans '更多' %}{% trans '被他们关注' %}
{% trans '更多' %}
{% if request.user.is_staff and request.user == user%}
{% endif %}
{% trans '举报信息' %}
全部举报-
{% for report in reports %}
- {{ report.submit_user }}{% trans '举报了' %}{{ report.reported_user }} {% empty %}
{% trans '暂无新举报' %}
{% endfor %}