{% extends "item_base.html" %} {% load static %} {% load i18n %} {% load l10n %} {% load humanize %} {% load mastodon %} {% load strip_scheme %} {% load thumb %} {% block details %}
{% if item.other_title %} {% trans '又名:' %} {% for t in item.other_title %} {{ t }} {% if not forloop.last %}/{% endif %} {% endfor %} {% endif %}
{% if item.author %} {% trans '作者:' %} {% for author in item.author %} {{ author }} {% if not forloop.last %}/{% endif %} {% endfor %} {% endif %}
{% endblock %} {% block left_sidebar %}
{% trans '本著作包含以下图书版本' %} {% for b in item.editions.all %}
{{ b.title }} ({{ b.pub_house | default:'' }} {{ b.pub_year | default:'' }})
{% endfor %}
{% endblock %} {% block sidebar %}{% endblock %}