X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/075fb07f19c2f20cd3b6818b973e7aebebdacc9f..79c9837d588f3d5a9046d66b74e04ed9886c3408:/wolnelektury/templates/catalogue/book_detail.html

diff --git a/wolnelektury/templates/catalogue/book_detail.html b/wolnelektury/templates/catalogue/book_detail.html
index 0a8b2236c..a996d66ee 100644
--- a/wolnelektury/templates/catalogue/book_detail.html
+++ b/wolnelektury/templates/catalogue/book_detail.html
@@ -1,8 +1,10 @@
 {% extends "base.html" %}
-{% load i18n %}
+{% load cache i18n %}
+{% load thumbnail %}
 {% load catalogue_tags pagination_tags %}
 
-{% block titleextra %}{{ book.title }}{% endblock %}
+{% block titleextra %}{{ book.pretty_title }}{% endblock %}
+{% block ogimage %}{{ book.cover.url|build_absolute_uri:request }}{% endblock %}
 
 {% block metadescription %}{% book_title book %}. {{ block.super }}{% endblock %}
 
@@ -12,5 +14,10 @@
 
 {% book_wide book %}
 
+{% work_list book_children %}
+
+
+<h2 class="main-last"><span class="mono">{% trans "See also" %}:</span></h2>
+{% related_books book %}
 
 {% endblock %}