2021-04-18 13:59:02 +00:00
|
|
|
{% spaceless %}
|
|
|
|
{% load i18n %}
|
|
|
|
|
2021-10-14 23:11:33 +00:00
|
|
|
{% if book.isbn_13 or book.oclc_number or book.asin %}
|
2021-04-18 13:59:02 +00:00
|
|
|
<dl>
|
|
|
|
{% if book.isbn_13 %}
|
|
|
|
<div class="is-flex">
|
|
|
|
<dt class="mr-1">{% trans "ISBN:" %}</dt>
|
|
|
|
<dd itemprop="isbn">{{ book.isbn_13 }}</dd>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if book.oclc_number %}
|
|
|
|
<div class="is-flex">
|
|
|
|
<dt class="mr-1">{% trans "OCLC Number:" %}</dt>
|
|
|
|
<dd>{{ book.oclc_number }}</dd>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if book.asin %}
|
|
|
|
<div class="is-flex">
|
|
|
|
<dt class="mr-1">{% trans "ASIN:" %}</dt>
|
|
|
|
<dd>{{ book.asin }}</dd>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
</dl>
|
2021-10-01 17:08:56 +00:00
|
|
|
{% endif %}
|
2021-04-18 13:59:02 +00:00
|
|
|
{% endspaceless %}
|