bookwyrm/bookwyrm/templates/rss/edition.html
mattkatz 09d857e6fb support same identifiers as book page in rss
in book_identifiers.html template we support multiple identifiers in
order.

This commit adopts the same logic and order
2024-03-18 22:33:47 -04:00

9 lines
637 B
HTML

{% blocktrans %}{{{obj.title}} by {{obj.author_text}}{% endblocktrans %}
{{obj.description|default:""}}
{% if obj.description %}{% trans "ISBN13:" %} {{item.isbn_13|default: ""}}{% endif %}
{% if obj.description %}{% trans "OCLC Number:" %} {{item.oclc_number|default: ""}}{% endif %}
{% if obj.description %}{% trans "ASIN:" %} {{item.asin|default: ""}}{% endif %}
{% if obj.description %}{% trans "Audible ASIN:" %} {{item.aasin|default: ""}}{% endif %}
{% if obj.description %}{% trans "ISFDB ID:" %} {{item.isfdb|default: ""}}{% endif %}
{% if obj.description %}{% trans "Goodreads:" %} {{item.goodreads_key|default: ""}}{% endif %}