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

17 lines
645 B
HTML
Raw Normal View History

2022-01-05 21:01:53 +00:00
{% load cache %}
2022-02-21 16:44:04 +00:00
{% load i18n %}
2022-01-05 21:01:53 +00:00
{# Three day cache #}
2022-02-20 00:34:48 +00:00
{% get_current_language as LANGUAGE_CODE %}
{% cache 259200 generated_note_header LANGUAGE_CODE status.id %}
{% 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 %}
2022-01-05 21:01:53 +00:00
{% endcache %}