moviewyrm/bookwyrm/templates/book/publisher_info.html

71 lines
2.3 KiB
HTML
Raw Normal View History

2021-04-09 21:57:49 +00:00
{% spaceless %}
2021-03-29 17:21:48 +00:00
{% load i18n %}
2021-04-19 23:30:15 +00:00
{% load humanize %}
2021-04-09 21:57:49 +00:00
2021-03-29 17:21:48 +00:00
<p>
2021-04-09 21:57:49 +00:00
{% with format=book.physical_format pages=book.pages %}
{% if format %}
{% comment %}
@todo The bookFormat property is limited to a list of values whereas the book edition is free text.
2021-04-09 21:57:49 +00:00
@see https://schema.org/bookFormat
{% endcomment %}
<meta itemprop="bookFormat" content="{{ format }}">
{% endif %}
{% if pages %}
<meta itemprop="numberOfPages" content="{{ pages }}">
{% endif %}
{% if format and not pages %}
{% blocktrans %}{{ format }}{% endblocktrans %}
{% elif format and pages %}
{% blocktrans %}{{ format }}, {{ pages }} pages{% endblocktrans %}
{% elif pages %}
{% blocktrans %}{{ pages }} pages{% endblocktrans %}
{% endif %}
{% endwith %}
2021-03-29 17:21:48 +00:00
</p>
2021-04-09 21:57:49 +00:00
2021-03-29 17:21:48 +00:00
{% if book.languages %}
2021-04-09 21:57:49 +00:00
{% for language in book.languages %}
<meta itemprop="inLanguage" content="{{ language }}">
{% endfor %}
<p>
{% with languages=book.languages|join:", " %}
{% blocktrans %}{{ languages }} language{% endblocktrans %}
{% endwith %}
</p>
2021-03-29 17:21:48 +00:00
{% endif %}
2021-04-09 21:57:49 +00:00
2021-03-29 17:21:48 +00:00
<p>
2021-04-19 23:30:15 +00:00
{% with date=book.published_date|naturalday publisher=book.publishers|join:', ' %}
2021-04-09 21:57:49 +00:00
{% if date or book.first_published_date %}
<meta
itemprop="datePublished"
content="{{ book.first_published_date|default:book.published_date|date:'Y-m-d' }}"
>
{% endif %}
{% comment %}
@todo The publisher property needs to be an Organization or a Person. Well be using Thing which is the more generic ancestor.
2021-04-09 21:57:49 +00:00
@see https://schema.org/Publisher
{% endcomment %}
{% if book.publishers %}
{% for publisher in book.publishers %}
<meta itemprop="publisher" content="{{ publisher }}">
{% endfor %}
{% endif %}
{% if date and publisher %}
{% blocktrans %}Published {{ date }} by {{ publisher }}.{% endblocktrans %}
{% elif date %}
{% blocktrans %}Published {{ date }}{% endblocktrans %}
{% elif publisher %}
{% blocktrans %}Published by {{ publisher }}.{% endblocktrans %}
{% endif %}
{% endwith %}
2021-03-29 17:21:48 +00:00
</p>
2021-04-09 21:57:49 +00:00
{% endspaceless %}