1 {% extends "picture/picture_short.html" %}
3 {% load picture_tags thumbnail %}
6 {% block box-class %}book-wide-box{% endblock %}
8 {% block picture-view %}
9 <a href="{{ main_link }}">
10 {% thumbnail picture.image_file "535" upscale=0 as thumb %}
11 <img class="cover" src="{{thumb.url}}"/></a>
16 {% block extra_categories %}
17 {% if picture.extra_info.styles %}
18 <span class="category">
19 <span class="mono"> {% trans "Style" %}:</span> <span class="book-box-tag">
20 {% for tag in picture.extra_info.styles %}
22 {% if not forloop.last %}<span>, </span>{% endif %}
27 {% if picture.extra_info.medium %}
28 <span class="category">
29 <span class="mono"> {% trans "Medium" %}:</span> <span class="book-box-tag">
30 <a>{{ picture.extra_info.medium }}</a>
34 {% if picture.extra_info.original_dimensions %}
35 <span class="category">
36 <span class="mono"> {% trans "Dimensions" %}:</span> <span class="book-box-tag">
37 <a>{{ picture.extra_info.original_dimensions }}</a>
41 <span class="category">
42 <span class="mono"> {% trans "Date" %}:</span> <span class="book-box-tag">
43 <a>{{ picture.extra_info.created_at }}</a>
49 {% block book-box-extra-info %}
50 {% if themes or things%}
51 <div class="hidden-box-wrapper" id="theme-list-wrapper">
52 <p><a class="hidden-box-trigger theme-list-link"
53 href="#">{% trans "Motifs, themes and objects" %}</a></p>
54 <div class="hidden-box">
56 <p>{% trans "Motifs and themes" %}</p>
58 {% for theme in themes %}
59 <li><a href="{% url 'picture_viewer' picture.slug %}#theme-{{theme.slug}}">{{ theme }}</a></li>
64 <p>{% trans "Objects" %}</p>
66 {% for thing in things %}
67 <li><a href="{% url 'picture_viewer' picture.slug %}#object-{{thing.slug}}">{{ thing }}</a></li>
79 {% block right-column %}
80 <div class="right-column">
81 <div class="other-tools">
82 <h2 class="mono">{% trans "See" %}</h2>
84 {% if extra_info.source_url %}
85 <li><a href="{{ extra_info.source_url }}">{% trans "Source" %}</a> {% trans "of the picture" %}</li>
87 <li><a href="{{ picture.xml_file.url }}">{% trans "Source XML file" %}</a></li>
88 {% if extra_info.about and not hide_about %}
89 <li>{% trans "Picture on" %} <a href="{{ extra_info.about }}">{% trans "Editor's Platform" %}</a></li>
91 {% if picture.wiki_link %}
92 <li><a href="{{ picture.wiki_link }}">{% trans "Picture description on Wikipedia" %}</a></li>