{% extends "spirit/_base.html" %} {% load spirit_tags i18n %} {% block title %}{% trans "Comment history" %}{% endblock %} {% block content %} {# todo: add nav bar #}

{% trans "Comment history" %}

{% for c in comments %}
{{ c.comment_html|safe }}
{% endfor %}
{% endblock %}