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

{% trans "Comment history" %}

{% yt_paginator_autopaginate comments as page %} {% for c in page %}
{{ c.comment_html|safe }}
{% endfor %}
{% render_yt_paginator page %} {% endblock %}