fixes
[wolnelektury.git] / src / picture / templates / picture / picturearea_short.html
1 {% load i18n %}
2 {% load picture_tags %}
3 {% load catalogue_tags %}
4
5 <div class="area">
6   <div class="area-thumbnail">
7     <a href="{% url 'picture_viewer' area.picture.slug %}{% if theme %}#theme-{{theme.slug}}{% else %}#object-{{thing.slug}}{% endif %}">
8       <img src='{% area_thumbnail_url area "100x100" %}'/>
9     </a>
10   </div>
11   {% with area.picture as picture %}
12     <div class="area-description">
13       <div class="mono source">
14         {% book_title_html picture %}
15       </div>
16     </div>
17     <div style="clear:both"></div>
18   {% endwith %}
19 </div>