{% load comments %}

{% if comment_count %}
{{ comment_count }} comment{{ comment_count|pluralize }}
{% render_comment_list for object %}
{% endif %}

{% if object.allow_comments %}
Want to comment?
{% render_comment_form for object %}
{% endif %}