-<h1>{% trans "Cover image" %}</h1>
-
-<div style="float: right; margin-bottom:1em;">
-
-<a href="{{ object.file.url }}"><img
- src="{% thumbnail object.file "565x833" as thumb %}
- {{ thumb.url }}
- {% empty %}
- {{ object.file.url }}
- {% endthumbnail %}" />
- </a>
-<br/><a href="{{ object.source_url }}">{{ object.title }}</a> by {{ object.author }},
- {% if object.license_url %}<a href="{{ object.license_url }}">{% endif %}
- {{ object.license_name }}
- {% if object.license_url %}</a>{% endif %}
-
-<br/>{% trans "source" %}: {{ object.download_url }}
+ <h1>{% trans "Cover image" %}</h1>
+ <div class="row">
+ <div class="col-md-5">
+
+
+
+
+
+ {% if editable %}
+ <form method="post" enctype="multipart/form-data">
+ {% csrf_token %}
+ {% endif %}
+ <table class='editable'><tbody>
+ {% bootstrap_form form %}
+ {% if editable %}
+ {% buttons %}
+ <button type="submit" class="btn btn-primary">{% trans "Change" %}</button>
+ {% endbuttons %}
+ {% endif %}
+ </tbody></table>
+ {% if editable %}</form>{% endif %}
+ </div>
+
+
+ <div class="col-md-7">
+ {% with perc=object.cut_percentages %}
+ <a href="{{ object.use_file.url }}" style="position: relative; display: block; width: {{ perc.width }}px; height: {{ perc.height }}px;">
+ {% thumbnail object.file perc.th as th %}
+ <img src="{{ th.url }}" />
+ {% endthumbnail %}
+ {% localize off %}
+ <div style="background: black; opacity: .5; display: block; position: absolute; top:0; left: 0; right: 0; height: {{ perc.top }}%"></div>
+ <div style="background: black; opacity: .5; display: block; position: absolute; bottom:0; left: 0; right: 0; height: {{ perc.bottom }}%"></div>
+ <div style="background: black; opacity: .5; display: block; position: absolute; top: {{ perc.top }}%; bottom: {{ perc.bottom }}%; left: 0; width: {{ perc.left }}%"></div>
+ <div style="background: black; opacity: .5; display: block; position: absolute; top: {{ perc.top }}%; bottom: {{ perc.bottom }}%; right: 0; width: {{ perc.right }}%"></div>
+ {% endlocalize %}
+ {% endwith %}
+ </a>
+ <br/><a href="{{ object.source_url }}">{{ object.title }}</a> by {{ object.author }},
+ {% if object.license_url %}<a href="{{ object.license_url }}">{% endif %}
+ {{ object.license_name }}
+ {% if object.license_url %}</a>{% endif %}
+
+ {% if object.example %}
+ <div class="mt-4">
+ <img src="{{ object.example.url }}?{{ object.etag }}">
+ </div>
+ {% endif %}
+ </div>
+ </div>
+
+
+ <textarea style="width:100%" rows="6" class="form-control mt-4" disabled>
+<dc:relation.coverImage.url xmlns:dc="http://purl.org/dc/elements/1.1/">{{ object.use_file.url|build_absolute_uri:request }}</dc:relation.coverImage.url>
+<dc:relation.coverImage.attribution xmlns:dc="http://purl.org/dc/elements/1.1/">{{ object.attribution }}</dc:relation.coverImage.attribution>
+<dc:relation.coverImage.source xmlns:dc="http://purl.org/dc/elements/1.1/">{{ object.get_full_url }}</dc:relation.coverImage.source></textarea>
+
+ <div class="card mt-4">
+ <div class="card-header">
+ <h2>{% trans "Used in:" %}</h2>
+ </div>
+ <div class="card-body">
+ {% if object.book_set.exists %}
+ <ul style="list-style: none; padding: 0; display: flex; gap: 10px;">
+ {% for book in object.book_set.all %}
+ <li>
+ <a href="{{ book.get_absolute_url }}" title="{{ book }}">
+ <img src="{{ book.cover.url }}?{{ object.etag }}" alt="{{ book }}">
+ </a>
+ </li>
+ {% endfor %}
+ </ul>
+ {% else %}
+ <p>{% trans "None" %}</p>
+ {% endif %}
+ </div>