fixes
[wolnelektury.git] / src / picture / templates / picture / picture_detail.html
1 {% extends "base/base.html" %}
2 {% load i18n %}
3 {% load picture_tags catalogue_tags pagination_tags %}
4 {% load thumbnail %}
5 {% load build_absolute_uri from fnp_common %}
6
7
8 {% block ogimage %}{% thumbnail picture.image_file "535" upscale="false" as thumb %}{{ thumb.url|build_absolute_uri:request }}{% endthumbnail %}{% endblock %}
9
10
11 {% block titleextra %}{{ picture.title }}{% endblock %}
12
13 {% block bodyid %}picture-detail{% endblock %}
14
15 {% block body %}
16   {% picture_wide picture %}
17   {% spaceless %}
18     <section class="see-also">
19       <h1>{% trans "See also" %}:</h1>
20       {% related_books picture %}
21     </section>
22   {% endspaceless %}
23 {% endblock %}