mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-23 18:11:09 +00:00
Use detail field on book paeg and meta
This commit is contained in:
parent
54a8815f49
commit
47706b5353
1 changed files with 4 additions and 2 deletions
|
@ -4,13 +4,15 @@
|
||||||
{% load humanize %}
|
{% load humanize %}
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
{% with format=book.physical_format pages=book.pages %}
|
{% firstof book.physical_format_detail book.physical_format as format %}
|
||||||
|
{% firstof book.physical_format book.physical_format_detail as format_property %}
|
||||||
|
{% with pages=book.pages %}
|
||||||
{% if format %}
|
{% if format %}
|
||||||
{% comment %}
|
{% comment %}
|
||||||
@todo The bookFormat property is limited to a list of values whereas the book edition is free text.
|
@todo The bookFormat property is limited to a list of values whereas the book edition is free text.
|
||||||
@see https://schema.org/bookFormat
|
@see https://schema.org/bookFormat
|
||||||
{% endcomment %}
|
{% endcomment %}
|
||||||
<meta itemprop="bookFormat" content="{{ format }}">
|
<meta itemprop="bookFormat" content="{{ format_property }}">
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if pages %}
|
{% if pages %}
|
||||||
|
|
Loading…
Reference in a new issue