regluit/frontend/templates/edition_display.html

52 lines
2.3 KiB
HTML
Raw Normal View History

2016-05-11 14:41:50 +00:00
<div class="clearfix">
<div class="editions">
2017-09-04 21:10:23 +00:00
<div class="book-cover">
<img src="{{ edition.cover_image_thumbnail }}" title="edition cover" alt="edition cover" />
</div>
<div class="metadata" id="edition_{{edition.id}}">
2016-07-25 18:50:19 +00:00
{% if edition.title != work.title %}
Title: {{edition.title}}<br />
2016-07-25 18:50:19 +00:00
{% endif %}
{% if edition.authors.all.0 %}
Contributors:
{% for author in edition.authors.all %}
{{author}},
{% endfor %}
<br />
{% endif %}
2016-08-16 21:16:44 +00:00
{% if edition.note %}
{{ edition.note }}.<br />
{% endif %}
{% if edition.downloads.count %}
{{ edition.downloads.count }} ebooks<br />
{% endif %}
{% if edition.publisher %}
2015-04-28 03:24:02 +00:00
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 %}
2017-07-28 16:45:17 +00:00
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 />
2016-07-25 18:50:19 +00:00
{% 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 %}
2014-10-14 14:08:08 +00:00
{% endif %}
2014-10-27 20:57:35 +00:00
{% if user.libpref %}{% if edition.ebooks.all or edition.ebook_files.all %}
2015-04-28 03:24:02 +00:00
<a href="{% url 'upload_marc' %}?edition={{ edition.id }}">Upload</a> a MARC record for this edition. <br />
{% endif %} {% endif %}
</div>
</div>
</div>