forked from mirrors/bookwyrm
66c72c8b41
- Add template for identifiers. - Remove `space-between` that adds too much space on narrow views. - Apply the `content` class only on publisher infos to avoid applying automatic styles to the description list.
27 lines
634 B
HTML
27 lines
634 B
HTML
{% spaceless %}
|
|
|
|
{% load i18n %}
|
|
|
|
<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>
|
|
{% endspaceless %}
|