moviewyrm/fedireads/templates/snippets/status.html

29 lines
1.2 KiB
HTML
Raw Normal View History

2020-02-20 02:04:04 +00:00
{% load fr_display %}
<div class="update">
{% if activity.status_type == 'Review' %}
2020-02-20 02:41:37 +00:00
{% include 'snippets/status_banner.html' with content="reviewed <i>"|add:activity.book.data.title|add:"</i>" %}
2020-02-20 02:04:04 +00:00
<div class="book-preview review">
{% include 'snippets/book.html' with book=activity.book size=large %}
<h3>{{ activity.name }}</h3>
<p>{{ activity.rating | stars }}</p>
<p>{{ activity.content | safe }}</p>
</div>
2020-02-21 23:39:25 +00:00
{% include 'snippets/interaction.html' with activity=activity %}
2020-02-20 02:04:04 +00:00
{% elif activity.status_type == 'Note' %}
2020-02-20 02:41:37 +00:00
{% include 'snippets/status_banner.html' %}
<span>{{ activity.content | safe }}</span>
2020-02-20 02:04:04 +00:00
{% for book in activity.mention_books.all %}
<div class="book-preview review">
{% include 'snippets/book.html' with book=book size=large description=True %}
</div>
{% endfor %}
2020-02-21 23:39:25 +00:00
{% include 'snippets/interaction.html' with activity=activity %}
2020-02-20 02:04:04 +00:00
{% else %}
{# generic handling for a misc activity, which perhaps should not be displayed at all #}
did {{ activity.activity_type }}
</h2>
{% endif %}
</div>