
{{ 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 %}
{% trans '评分:暂无评分' %}
{% endif %}
{% else %}
{% 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 %}