{% load static %} {% load i18n %} {% load admin_url %} {% load mastodon %} {% load oauth_token %} {% load truncate %} {% trans 'Boofilsic - 书籍详情' %} | {{ book.title }}
{{ 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.rating %} {{ book.rating }} {% else %} {% trans '评分:暂无评分' %} {% 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 %} {% comment %} {% url 'users:home' book.last_editor %} {% endcomment %}
{% trans '最近编辑者:' %}{{ book.last_editor | default:"" }}
{% trans '编辑这本书' %} {% if user.is_staff %} / {% trans '删除' %} {% endif %}
{% trans '简介' %}
{% if book.brief %}

{{ book.brief }}

{% 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 %} {% else %}

{% 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 %} {% else %}

{% trans '暂无评论' %}

{% endif %}
{% if mark %}
{% 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 '修改' %}
{% csrf_token %} {% trans '删除' %}
{{ mark.edited_time }}
{% if mark.text %}

{{ mark.text }}

{% endif %}
{% else %} {% endif %}
{% if review %}
{% trans '我的评论' %} {% if review.is_private %} {% endif %} {% trans '编辑' %} {% trans '删除' %}
{{ review.edited_time }}
{{ review.title }}
{% else %}
{% trans '我的评论' %}
{% trans '去写评论' %} {% endif %}