fb278bedc8c7bd1c7405c217f2f2b7048c9a5382
[wolnelektury.git] / src / picture / templates / picture / picture_searched.html
1 {% extends "picture/picture_short.html" %}
2 {% load picture_tags %}
3
4 {% block right-column %}
5   <div class="picture-right-column">
6     {% for hit in result.hits %}
7       <div class="area-hit">
8         <p>{{ hit.themes|join:", " }}</p>
9         {% if hit.area %}
10           <a href="{% url 'picture_viewer' hit.area.picture.slug %}">
11             <img src="{% area_thumbnail_url hit.area "100x100" %}"/>
12           </a>
13         {% endif %}
14       </div>
15     {% endfor %}
16   </div>
17 {% endblock %}