{% extends 'associations/detail.html' %} {% load rules %} {% block menu %}{% menu 'conversation' association.entity %}{% endblock %} {% block heading_title %}{% with title='Gespräch' %}{{ block.super }}{% endwith %}{% endblock %} {% block breadcrumb %} {% if association.entity.is_group %} {% url 'group-conversations' association.entity.pk as group_conversation_url %} {% breadcrumb association.entity 'Gespräche'|link_to:group_conversation_url association.container %} {% else %} {% breadcrumb association.entity association.container %} {% endif %} {% endblock %} {% block content %} {% has_perm 'conversations.reply' user association as can_reply %}
{% has_perm 'memberships.apply' user association.entity as can_apply %} {% if association.container.is_conversation and can_apply %}

Beantrage eine Mitgliedschaft, falls du Mitglied dieser geschlossenen Gruppe werden möchtest.

Mitgliedschaft beantragen
{% endif %}

{{ association.container.subject }}

Gespräch {% include 'conversations/_visibility.html' %}
    {% for message in association.container.contributions.all %} {% include 'contributions/_contribution.html' with contribution=message permalink_url=request.path %} {% endfor %} {% if can_reply %}
  1. {% include "contributions/_create_text.html" with form=form author=user.gestalt submit_label='Antworten' %}
  2. {% endif %}
{% endblock %}