{% extends 'associations/association.html' %} {% load rules %} {% block heading_title %}

Gespräch

{% endblock %} {% block content %} {% has_perm 'conversations.reply' user association as can_reply %}

{{ association.container.subject }}

    {% for message in association.container.texts.all %}
  1. {% include 'texts/_text.html' with text=message only %}
  2. {% endfor %} {% if can_reply %}
  3. {% include "conversations/_reply.html" with form=form author=user.gestalt %}
  4. {% endif %}
{% endblock %} {% block sidebar %} {% if association.entity.is_group %} {% include 'entities/_sidebar_group.html' with group=association.entity %} {% else %} {% if association.entity.public %} {% include 'entities/_sidebar_author.html' with gestalt=association.entity %} {% endif %} {% endif %} {% endblock %}