moviewyrm/bookwyrm/templates/snippets/status/headers/generatednote.html

10 lines
465 B
HTML
Raw Normal View History

{% if status.content == 'wants to read' %}
{% include 'snippets/status/headers/to_read.html' with book=status.mention_books.first %}
2022-01-01 14:51:40 +00:00
{% elif status.content == 'finished reading' %}
{% include 'snippets/status/headers/read.html' with book=status.mention_books.first %}
2022-01-01 14:51:40 +00:00
{% elif status.content == 'started reading' %}
{% include 'snippets/status/headers/reading.html' with book=status.mention_books.first %}
2022-01-01 14:51:40 +00:00
{% else %}
{{ status.content }}
{% endif %}