{% extends "base.html" %} {% load catalogue_tags %} {% block title %}Lektura {{ book.title }} w WolneLektury.pl{% endblock %} {% block bodyid %}book-detail{% endblock %} {% block extrahead %} {% endblock %} {% block body %}
{{ book.title }}, {{ categories.author|join:", " }}
{{ form.q }}
lub
wróć do strony głównej
{% if book.has_description %}
{{ book.description|safe }}
Zwiń opis ▲
{% endif %}
{% if book.pdf_file %}
Pobierz plik PDF
{% endif %} {% if book.odt_file %}
Pobierz plik ODT
{% endif %} {% if book.html_file %}
Pobierz plik HTML
{% endif %}
{% if book.children.all %}
Utwory składające się na ten utwór:
{% for book in book.children.all %}
{{ book.title }}
{% endfor %}
{% endif %}
O utworze
Autor: {% for tag in categories.author %}
{{ tag }}
{% endfor %}
Epoka: {% for tag in categories.epoch %}
{{ tag }}
{% endfor %}
Rodzaj: {% for tag in categories.kind %}
{{ tag }}
{% endfor %}
Gatunek: {% for tag in categories.genre %}
{{ tag }}
{% endfor %}
{% if categories.theme %}
Motywy w utworze
{% for theme in categories.theme %}
{{ theme }}
{% endfor %}
{% endif %}
{% endblock %}