2014-03-11 21:34:27 +00:00
< div class = "clearfix" >
< div class = "editions" >
{% if edition.googlebooks_id %}
< div class = "image" >
< img src = "{{ edition.cover_image_small }}" title = "edition cover" alt = "edition cover" / >
< / div >
{% endif %}
< div class = "metadata" id = "edition_{{edition.id}}" >
{% ifnotequal edition.title work.title %}
Title: {{edition.title}}< br / >
{% endifnotequal %}
{% if edition.authors.all.0 %}
Contributors:
{% for author in edition.authors.all %}
{{author}},
{% endfor %}
< 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 = "http://www.worldcat.org/oclc/{{ edition.oclc }}" > {{ edition.oclc }}< / a > < br / >
{% endif %}
2014-10-08 20:23:24 +00:00
{% if edition.http_id %}
web: < a href = "{{ edition.http_id }}" > {{ edition.http_id }}< / a > < br / >
{% endif %}
2014-04-29 18:53:18 +00:00
{% if not managing %}
{% if user.is_staff %}
< a href = "{% url new_edition work_id edition.id %}" > Edit this edition/Add ebook link< / a > < br / >
{% else %}{% if user in work.last_campaign.managers.all %}
< a href = "{% url new_edition work_id edition.id %}" > Edit this edition/Add ebook link< / a > < br / >
{% else %}{% if user.is_authenticated %}
< a href = "{% url new_edition work_id edition.id %}" > Add ebook link< / a > < br / >
{% endif %}{% endif %}{% 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 %}
{% if edition.MARCrecords.all %}
2014-03-11 21:34:27 +00:00
{% for record in edition.MARCrecords.all %}
Download {{record.link_target}} MARC record for this edition: (< a href = "{% url marc_concatenate %}?record_{{ record.id }}=on&format=xml" > XML< / a > ) (< a href = "{% url marc_concatenate %}?record_{{ record.id }}=on&format=mrc" > mrc< / a > )< br / >
{% endfor %}
2014-10-14 14:08:08 +00:00
{% else %}
{% if edition.ebooks.all %}
Download {{record.link_target}} MARC record for this edition: (< a href = "{% url marc_concatenate %}?edition_{{ edition.id }}=on&format=xml" > XML< / a > ) (< a href = "{% url marc_concatenate %}?edition_{{ edition.id }}=on&format=mrc" > mrc< / a > )< br / >
{% endif %}
{% endif %}
2014-03-11 21:34:27 +00:00
{% if user.is_staff %}{% if edition.ebooks.0 or edition.ebook_files.0 %}
< a href = "{% url MARCUngluify %}?edition={{ edition.id }}" > Upload< / a > a MARC record for this edition. < br / >
{% endif %} {% endif %}
< / div >
< / div >
< / div >