{% extends "discussion/base.html" %} {% load discussiontags %} {% block forum_content %}

{{ object }}

Add new post:

{% include 'discussion/_post_form_fields.html' %}
{% for post in object.post_set.all %}
{% url discussion_post pk=post.pk discussion_slug=object.slug as post_detail %}
{% if post.comment_set.all.count > 0 %}

Replies:

{% for comment in post.comment_set.all %} {% include 'discussion/_comment_detail.html' %} {% endfor %} {% endif %}
{% comment_form post %}
{% endfor %}
All discussions {% endblock %}