{% 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 '最近编辑者:' %}someone
{% trans '简介' %}
{% if book.brief %}

{{ book.brief }}

{% else %}

{% trans '暂无简介' %}

{% endif %}