regluit/frontend/templates/edition_display.html

52 lines
2.3 KiB
HTML

<div class="clearfix">
<div class="editions">
<div class="book-cover">
<img src="{{ edition.cover_image_thumbnail }}" title="edition cover" alt="edition cover" />
</div>
<div class="metadata" id="edition_{{edition.id}}">
{% if edition.title != work.title %}
Title: {{edition.title}}<br />
{% endif %}
{% if edition.authors.all.0 %}
Contributors:
{% for author in edition.authors.all %}
{{author}},
{% endfor %}
<br />
{% endif %}
{% if edition.note %}
{{ edition.note }}.<br />
{% endif %}
{% if edition.downloads.count %}
{{ edition.downloads.count }} ebooks<br />
{% endif %}
{% if edition.publisher %}
Publisher: <a href="{% url 'bypubname_list' edition.publisher_name.id %}">{{edition.publisher}}</a><br />
{% endif %}
{% if edition.publication_date %}
Published: {{ edition.publication_date }}<br />
{% endif %}
{% if edition.isbn_13 %}
ISBN: <span itemprop="isbn">{{ edition.isbn_13 }}</span><br />
{% endif %}
{% if edition.oclc %}
OCLC: <a href="https://www.worldcat.org/oclc/{{ edition.oclc }}">{{ edition.oclc }}</a><br />
{% endif %}
{% if not managing %}
{% if user_can_edit_work %}
<a href="{% url 'new_edition' work_id edition.id %}">Edit this edition</a><br />
{% endif %}
{% if user.is_authenticated %}
<a href="{% url 'manage_ebooks' edition.id %}">Add ebook link</a><br />
{% endif %}
{% if edition.googlebooks_id %}
See <a href="https://encrypted.google.com/books?id={{ edition.googlebooks_id }}">this edition on Google Books</a><br />
{% endif %}
{% endif %}
{% if user.libpref %}{% if edition.ebooks.all or edition.ebook_files.all %}
<a href="{% url 'upload_marc' %}?edition={{ edition.id }}">Upload</a> a MARC record for this edition. <br />
{% endif %} {% endif %}
</div>
</div>
</div>