diff --git a/bookwyrm/templates/rss/edition.html b/bookwyrm/templates/rss/edition.html index 54496bbe4..db65b1333 100644 --- a/bookwyrm/templates/rss/edition.html +++ b/bookwyrm/templates/rss/edition.html @@ -1,11 +1,10 @@ {% load i18n %} -{% blocktrans trimmed with book_title=obj.title book_author=obj.author_text %} -‘{{ book_title }}’{% if book_author %} by {{ book_author }}{% endif %} -{% endblocktrans %} -{{obj.description|default:""}} -{% if obj.isbn_13 %}{% trans "ISBN 13:" %} {{ obj.isbn_13 }}{% endif %} -{% if obj.oclc_number %}{% trans "OCLC Number:" %} {{ obj.oclc_number }}{% endif %} -{% if obj.asin %}{% trans "ASIN:" %} {{ obj.asin }}{% endif %} -{% if obj.aasin %}{% trans "Audible ASIN:" %} {{ obj.aasin }}{% endif %} -{% if obj.isfdb %}{% trans "ISFDB ID:" %} {{ obj.isfdb }}{% endif %} +{% load shelf_tags %} +‘{{ obj.title }}’ {% if obj.author_text %} by {{obj.author_text}} {% endif %} +
{{ obj.description|default_if_none:obj.parent_work.description}}
+{% if obj.isbn_13 %}{% trans "ISBN 13:" %} {{ obj.isbn_13 }}