{% load fr_display %}
{% if activity.status_type == 'Review' %} {% include 'snippets/status_banner.html' with content="reviewed "|add:activity.book.data.title|add:"" %}
{% include 'snippets/book.html' with book=activity.book size=large %}

{{ activity.name }}

{{ activity.rating | stars }}

{{ activity.content | safe }}

{% if activity.favorites.all %} {{ activity.favorites.count }} like(s) {% endif %}
{% csrf_token %}
{% csrf_token %} {{ comment_form.content }}
{% elif activity.status_type == 'Note' %} {% include 'snippets/status_banner.html' %} {{ activity.content | safe }} {% for book in activity.mention_books.all %}
{% include 'snippets/book.html' with book=book size=large description=True %}
{% endfor %} {% else %} {# generic handling for a misc activity, which perhaps should not be displayed at all #} did {{ activity.activity_type }} {% endif %}