2016-05-11 14:41:50 +00:00
|
|
|
<div class="clearfix">
|
2014-03-11 21:34:27 +00:00
|
|
|
<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>
|
2014-03-11 21:34:27 +00:00
|
|
|
<div class="metadata" id="edition_{{edition.id}}">
|
2016-07-25 18:50:19 +00:00
|
|
|
{% if edition.title != work.title %}
|
2014-03-11 21:34:27 +00:00
|
|
|
Title: {{edition.title}}<br />
|
2016-07-25 18:50:19 +00:00
|
|
|
{% endif %}
|
2014-03-11 21:34:27 +00:00
|
|
|
{% 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 %}
|
2016-08-24 19:41:29 +00:00
|
|
|
{% if edition.downloads.count %}
|
|
|
|
{{ edition.downloads.count }} ebooks<br />
|
2016-08-16 21:17:24 +00:00
|
|
|
{% endif %}
|
2014-03-11 21:34:27 +00:00
|
|
|
{% 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 />
|
2014-03-11 21:34:27 +00:00
|
|
|
{% 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 />
|
2014-03-11 21:34:27 +00:00
|
|
|
{% endif %}
|
2014-04-29 18:53:18 +00:00
|
|
|
{% if not managing %}
|
2017-10-26 17:03:05 +00:00
|
|
|
{% if user_can_edit_work %}
|
2015-12-17 15:29:35 +00:00
|
|
|
<a href="{% url 'new_edition' work_id edition.id %}">Edit this edition</a><br />
|
2016-07-25 18:50:19 +00:00
|
|
|
{% endif %}
|
2015-09-21 20:07:41 +00:00
|
|
|
{% if user.is_authenticated %}
|
|
|
|
<a href="{% url 'manage_ebooks' edition.id %}">Add ebook link</a><br />
|
|
|
|
{% endif %}
|
2014-04-29 18:53:18 +00:00
|
|
|
{% 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 />
|
2014-03-11 21:34:27 +00:00
|
|
|
{% endif %} {% endif %}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|