3 {% load catalogue_tags social_tags %}
4 {% load picture_tags %}
6 <div class="{% block box-class %}book-box{% endblock %} picture">
7 <div class="book-box-inner">
8 <div class="book-box-body">
9 <div class="book-box-head">
11 {% for tag in tags.author %}
12 <a href="{{ tag.get_absolute_gallery_url }}">{{ tag }}</a>{% if not forloop.last %},
13 {% endif %}{% endfor %}
16 {% if main_link %}<a href="{{ main_link }}">{% endif %}
18 {% if main_link %}</a>{% endif %}
22 <div class="cover-area">
23 {% block picture-view %}
24 {% if main_link %}<a href="{{ main_link }}">{% endif %}
25 {% thumbnail picture.image_file "216x288" crop="center" as thumb %}
26 <img class="cover" src="{{thumb.url}}"/>
28 {% if main_link %}</a>{% endif %}
30 {# what about licensing icons here #}
35 <span class="category">
36 <span class="mono"> {% trans "Epoch" %}:</span> <span class="book-box-tag">
37 {% for tag in tags.epoch %}
38 <a href="{{ tag.get_absolute_gallery_url }}">{{ tag }}</a>
39 {% if not forloop.last %}<span>, </span>{% endif %}
44 <span class="category">
45 <span class="mono"> {% trans "Kind" %}:</span> <span class="book-box-tag">
46 {% for tag in tags.kind %}
47 <a href="{{ tag.get_absolute_gallery_url }}">{{ tag }}</a>
48 {% if not forloop.last %}<span>, </span>{% endif %}
53 <span class="category">
54 <span class="mono"> {% trans "Genre" %}:</span> <span class="book-box-tag">
55 {% for tag in tags.genre %}
56 <a href="{{ tag.get_absolute_gallery_url }}">{{ tag }}</a>
57 {% if not forloop.last %}<span>, </span>{% endif %}
62 {% block extra_categories %}
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 %}{% endblock %}
77 {% block right-column %}{% endblock %}
78 <div class="clearboth"></div>