cf8f921f7f1bf815a071b8b8bfc32a569e26fedc
[redakcja.git] / apps / cover / templates / cover / image_detail.html
1 {% extends "catalogue/base.html" %}
2 {% load i18n %}
3 {% load thumbnail %}
4 {% load build_absolute_uri from fnp_common %}
5
6 {% block content %}
7 <h1>{% trans "Cover image" %}</h1>
8
9 <div style="float: right; margin-bottom:1em;">
10
11 <a href="{{ object.file.url }}"><img
12         src="{% thumbnail object.file "565x833" as thumb %}
13                 {{ thumb.url }}
14              {% empty %}
15                 {{ object.file.url }}
16              {% endthumbnail %}" />
17     </a>
18 <br/><a href="{{ object.source_url }}">{{ object.title }}</a> by {{ object.author }},
19     {% if object.license_url %}<a href="{{ object.license_url }}">{% endif %}
20         {{ object.license_name }}
21     {% if object.license_url %}</a>{% endif %}
22
23 <br/>{% trans "source" %}: {{ object.download_url }}
24 </div>
25
26
27 {% if editable %}
28     <form method="post" enctype="multipart/form-data">
29     {% csrf_token %}
30 {% endif %}
31 <table class='editable'><tbody>
32     {{ form.as_table }}
33     {% if editable %}
34         <tr><td></td><td><button type="submit">{% trans "Change" %}</button></td></tr>
35     {% endif %}
36 </tbody></table>
37 {% if editable %}</form>{% endif %}
38
39
40 <h2>{% trans "Used in:" %}</h2>
41 {% if object.book_set %}
42 <ul>
43     {% for book in object.book_set.all %}
44         <li><a href="{{ book.get_absolute_url }}">{{ book }}</a></li>
45     {% endfor %}
46 </ul>
47 {% else %}
48     <p>{% trans "None" %}</p>
49 {% endif %}
50
51
52 <textarea style="width:100%" rows="5">
53 &lt;dc:relation.coverImage.url xmlns:dc="http://purl.org/dc/elements/1.1/">{{ object.file.url|build_absolute_uri:request }}&lt;/dc:relation.coverImage.url>
54 &lt;dc:relation.coverImage.attribution xmlns:dc="http://purl.org/dc/elements/1.1/">{{ object.author }}, {{ object.license_name }}&lt;/dc:relation.coverImage.attribution>
55 &lt;dc:relation.coverImage.source xmlns:dc="http://purl.org/dc/elements/1.1/">{{ object.get_full_url }}&lt;/dc:relation.coverImage.source>
56 </textarea>
57 {% endblock %}