{% extends "catalog_books/base_list.html" %} {% load i18n l10n cms_tags thumbnail catalog_books static %} {% block catalog_book_list_navigation %} tiles list {% include "catalog_books/book_list_order_by.html" %} {% endblock %} {% block catalog_book_content %}
{% for book in book_list %}
{% if book.new %}
{% translate "New" context "new-book" %}
{% endif %} {% if book.bestseller %}
{% translate "Bestseller" %}
{% endif %} {% if book.coming_soon %}
{% translate "Coming soon" %}
{% 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 %} {% endfor %}{% if book.authors_and_team %} {% translate "and team" %}{% endif %}
{{ book.issue|date:"Y" }}
{{ book.description|default_if_none:"" }}
{% translate "Book detail" %}
{% empty %}

{% translate "No items available" %}

{% endfor %}
{% endblock %}