3 {% load catalogue_tags social_tags %}
4 {% load picture_tags %}
5 <div class="{% block box-class %}book-box{% endblock %} picture">
6 <div class="book-box-inner">
7 <div class="book-left-column">
9 <div class="book-box-body">
11 <div class="book-box-head">
13 {% for tag in tags.author %}
14 <a href="{{ tag.get_absolute_url }}">{{ tag }}</a>{% if not forloop.last %},
15 {% endif %}{% endfor %}
18 {% if main_link %}<a href="{{ main_link }}">{% endif %}
20 {% if main_link %}</a>{% endif %}
26 <div class="cover-area">
27 {% block picture-view %}
28 {% if main_link %}<a href="{{ main_link }}">{% endif %}
29 {% thumbnail picture.image_file "216x288" crop="center" as thumb %}
30 <img class="cover" src="{{thumb.url}}"/>
32 {% if main_link %}</a>{% endif %}
34 {# what about licensing icons here #}
40 <span class="category">
41 <span class="mono"> {% trans "Epoch" %}:</span> <span class="book-box-tag">
42 {% for tag in tags.epoch %}
43 <a href="{{ tag.get_absolute_url }}">{{ tag }}</a>
44 {% if not forloop.last %}<span>, </span>{% endif %}
48 <span class="category">
49 <span class="mono"> {% trans "Kind" %}:</span> <span class="book-box-tag">
50 {% for tag in tags.kind %}
51 <a href="{{ tag.get_absolute_url }}">{{ tag }}</a>
52 {% if not forloop.last %}<span>, </span>{% endif %}
56 <span class="category">
57 <span class="mono"> {% trans "Genre" %}:</span> <span class="book-box-tag">
58 {% for tag in tags.genre %}
59 <a href="{{ tag.get_absolute_url }}">{{ tag }}</a>
60 {% if not forloop.last %}<span>, </span>{% endif %}
67 <ul class="book-box-tools">
68 <li class="book-box-read">
69 <a href="{% url 'picture_viewer' picture.slug %}" class="downarrow">{% trans "View online" %}</a>
71 <li class="book-box-download">
72 <a href="{{picture.image_file.url}}" class="downarrow">{% trans "download original" %}</a>
75 {% block book-box-extra-info %}{% endblock %}
76 {% block box-append %}
78 {% block right-column %}
80 <div class="clearboth"></div>