{{ book.title }}
{% if book.isbn %}{% trans 'ISBN:' %}{{ book.isbn }}{% endif %}
{% if book.author %}{% trans '作者:' %}
{% for author in book.author %}
{{ author }}
{% endfor %}
{% endif %}
{% if book.pub_house %}{% trans '出版社:' %}{{ book.pub_house }}{% endif %}
{% if book.subtitle %}{% trans '副标题:' %}{{ book.subtitle }}{% endif %}
{% if book.translator %}{% trans '译者:' %}
{% for translator in book.translator %}
{{ translator }}
{% endfor %}
{% endif %}
{% if book.orig_title %}{% trans '原作名:' %}{{ book.orig_title }}{% endif %}
{% if book.language %}{% trans '语言:' %}{{ book.language }}{% endif %}
{%if book.pub_year %}{% trans '出版时间:' %}{{ book.pub_year }}{% trans '年' %}{% if book.pub_month %}{{ book.pub_month }}{% trans '月' %}{% endif %}{% endif %}
{% if book.binding %}{% trans '装帧:' %}{{ book.binding }}{% endif %}
{% if book.price %}{% trans '定价:' %}{{ book.price }}{% endif %}
{% if book.pages %}{% trans '页数:' %}{{ book.pages }}{% endif %}
{% if book.other_info %}
{% for k, v in book.other_info.items %}
{{k}}:{{v}}
{% endfor %}
{% endif %}
{% if book.last_editor %}
{% trans '最近编辑者:' %}{{ book.last_editor | default:"" }}
{% endif %}
{% trans '编辑这本书' %}
{% if user.is_staff %}
/ {% trans '删除' %}
{% endif %}
{% trans '简介' %}
{% if book.brief %}{{ book.brief | linebreaksbr }}
{% else %}{% trans '暂无简介' %}
{% endif %}
{% trans '这本书的标记' %}
{% if mark_list_more %} {% trans '更多' %} {% endif %} {% if mark_list %}-
{% for others_mark in mark_list %}
-
{{ others_mark.owner.username }}
{{ others_mark.get_status_display }}
{% if others_mark.rating %}
{% endif %}
{% if others_mark.is_private %}
{% endif %}
{{ others_mark.edited_time }}
{% if others_mark.text %}
{{ others_mark.text }}
{% endif %}
{% endfor %}
{% trans '暂无标记' %}
{% endif %}
{% trans '这本书的评论' %}
{% if review_list_more %} {% trans '更多' %} {% endif %} {% if review_list %}-
{% for others_review in review_list %}
-
{{ others_review.owner.username }}
{% if others_review.is_private %}
{% endif %} {{ others_review.edited_time }} {{ others_review.title }}
{% endfor %}
{% trans '暂无评论' %}
{% endif %}
{% if mark %}
{% endif %}
{% trans '我' %}{{ mark.get_status_display }}
{% if mark.status == status_enum.DO.value or mark.status == status_enum.COLLECT.value%}
{% if mark.rating %}
{% endif %}
{% endif %}
{% if mark.is_private %}
{% endif %}
{% trans '修改' %}
{% else %}
{{ mark.edited_time }}
{% if mark.text %}
{{ mark.text }}
{% endif %}{% trans '标记这本书' %}
{% if review %}
{% endif %}
{% trans '我的评论' %}
{% if review.is_private %}
{% endif %}
{% trans '编辑' %}
{% trans '删除' %}
{% else %}
{{ review.edited_time }}
{{ review.title }}
{% trans '我的评论' %}