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