{% extends "discussion/base.html" %} {% load discussiontags %} {% block bodyclass %}{{ block.super }} post-view{% endblock %} {% block forum_content %}
{% include 'discussion/_post_detail.html' %}
{{ post.comment_set.all.count|default:"No" }} repl{{ post.comment_set.all.count|pluralize:"y,ies" }}
Reply
{% 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 %}
All posts in {{ post.discussion }} {% endblock %}