2021-10-25 00:30:48 -04:00
|
|
|
{% if status.content == 'wants to read' %}
|
|
|
|
{% include 'snippets/status/headers/to_read.html' with book=status.mention_books.first %}
|
2022-01-01 09:51:40 -05:00
|
|
|
{% elif status.content == 'finished reading' %}
|
2021-10-25 00:30:48 -04:00
|
|
|
{% include 'snippets/status/headers/read.html' with book=status.mention_books.first %}
|
2022-01-01 09:51:40 -05:00
|
|
|
{% elif status.content == 'started reading' %}
|
2021-10-25 00:30:48 -04:00
|
|
|
{% include 'snippets/status/headers/reading.html' with book=status.mention_books.first %}
|
2022-01-01 09:51:40 -05:00
|
|
|
{% else %}
|
|
|
|
{{ status.content }}
|
2021-10-25 00:30:48 -04:00
|
|
|
{% endif %}
|