{% 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 }}

{% include 'snippets/interaction.html' with activity=activity %} {% 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 %} {% include 'snippets/interaction.html' with activity=activity %} {% else %} {# generic handling for a misc activity, which perhaps should not be displayed at all #} did {{ activity.activity_type }} {% endif %}