{% extends "spirit/_base.html" %} {% load spirit_tags i18n %} {% block title %}{{ topic.title }}{% endblock %} {% block content %}

{{ topic.title }}

{% trans "Participants" %}
    {% for tp in topic.topics_private.all %} {% endfor %}
{% ifequal user.pk topic.user.pk %} {% render_invite_form topic %} {% endifequal %}
{% trans "Leave topic" %}
{% include "spirit/comment/_render_list.html" %} {# this can be *included* here and in topic_detail #}
{% render_paginator comments %}
{% render_notification_form user=user topic=topic %}
{% render_comments_form topic=topic %}
{% endblock %}