{% extends "catalog_books/base.html" %} {% load i18n cms_tags thumbnail static catalog_books %} {% block title %} {{ book.name }} - {{ block.super }} {% endblock %} {% block catalog_book_side %} {% static_placeholder 'book_side' %} {% endblock %} {% block catalog_book_content %}
{% if book.new %}
{% translate "New" context "new-book" %}
{% endif %} {% if book.bestseller %}
{% translate "Bestseller" %}
{% endif %} {% if book.preview %} {{ book.preview.alt }} {% else %} {% with img_src="catalog_books/img/without-cover-LANGUAGE_CODE.svg"|map_language_code:LANGUAGE_CODE %} {{ book.preview.alt }} {% endwith %} {% endif %}

{{ book.name }}

{% for author in book.authors.all %} {% spaceless %} {{ author.first_name }} {{ author.last_name }}{% if not forloop.last %},{% endif %} {% endspaceless %}{% if book.authors_and_team %} {% translate "and team" %}{% endif %} {% endfor %} {{ book.issue|date:"Y" }}
{% if book.stores.exists %} {% endif %}
{{ book.description|default_if_none:"" }}

{% translate "Bibliographic data" %}

{% translate "Name" %}:

{{ book.name }}

{% translate "Author" %}:

{% for author in book.authors.all %} {% spaceless %} {{ author.first_name }} {{ author.last_name }}{% if not forloop.last %},{% endif %} {% endspaceless %}{% if book.authors_and_team %} {% translate "and team" %}{% endif %} {% endfor %}

ISBN:

{{ book.isbn|default_if_none:"" }}

{% translate "Description" %}:

{{ book.bibliographic_description|default_if_none:"" }}

{% translate "Dimensions" %}:

{{ book.dimensions|default_if_none:"" }}

{% translate "Issue year" %}:

{{ book.issue|date:"Y" }}

{% if book.license %}

{% translate "License" %}

{{ book.license.name }}   {{ book.license.version|default_if_none:"" }}
{{ book.license.description }} {% if book.license.icon %} icon {% endif %}
{% endif %} {% have_authors_more_books book as authors_have_more_books %} {% if authors_have_more_books %}

{% translate "More books by the same author" %}

{% endif %} {% if book.ebooks.exists %}

{% translate "Download" %}

{% endif %}
{% endblock %}