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}}"/>
17 {% block extra_categories %}
18 {% if picture.extra_info.styles %}
19 <span class="category">
20 <span class="mono"> {% trans "Style" %}:</span> <span class="book-box-tag">
21 {% for tag in picture.extra_info.styles %}
23 {% if not forloop.last %}<span>, </span>{% endif %}
29 {% if picture.extra_info.medium %}
30 <span class="category">
31 <span class="mono"> {% trans "Medium" %}:</span> <span class="book-box-tag">
32 <a>{{ picture.extra_info.medium }}</a>
37 {% if picture.extra_info.original_dimensions %}
38 <span class="category">
39 <span class="mono"> {% trans "Dimensions" %}:</span> <span class="book-box-tag">
40 <a>{{ picture.extra_info.original_dimensions }}</a>
45 <span class="category">
46 <span class="mono"> {% trans "Date" %}:</span> <span class="book-box-tag">
47 <a>{{ picture.extra_info.created_at }}</a>
53 {% block book-box-extra-info %}
54 {% if themes or things%}
55 <div class="hidden-box-wrapper" id="theme-list-wrapper">
57 <a class="hidden-box-trigger theme-list-link" href="#">{% trans "Motifs, themes and objects" %}</a>
59 <div class="hidden-box">
61 <p>{% trans "Motifs and themes" %}</p>
63 {% for theme in themes %}
64 <li><a href="{% url 'picture_viewer' picture.slug %}#theme-{{theme.slug}}">{{ theme }}</a></li>
69 <p>{% trans "Objects" %}</p>
71 {% for thing in things %}
72 <li><a href="{% url 'picture_viewer' picture.slug %}#object-{{thing.slug}}">{{ thing }}</a></li>
84 {% block right-column %}
85 <div class="right-column">
86 <div class="other-tools">
87 <h2 class="mono">{% trans "See" %}</h2>
89 {% if picture.extra_info.source_url %}
90 <li><a href="{{ picture.extra_info.source_url }}">{% trans "Source" %}</a> {% trans "of the picture" %}</li>
92 <li><a href="{{ picture.xml_file.url }}">{% trans "Source XML file" %}</a></li>
93 {% if picture.extra_info.about and not hide_about %}
94 <li>{% trans "Picture on" %} <a href="{{ picture.extra_info.about }}">{% trans "Editor's Platform" %}</a></li>
96 {% if picture.wiki_link %}
97 <li><a href="{{ picture.wiki_link }}">{% trans "Picture description on Wikipedia" %}</a></li>