{% 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.date|shortnaturaltime }}
{{ c.comment_html|safe }}
{% endfor %}
{% render_paginator comments %} {% endblock %}