{% load threadedcomments_tags i18n %} {% if current_object.allow_comments == 'YES' or current_object.allow_comments == 'SITE' and CYCLOPE_SITE_SETTINGS.allow_comments == 'YES' %} {% get_comment_count for current_object as comment_count %}
{% if CYCLOPE_THEME_TYPE == 'bootstrap' %}

{% blocktrans %} There are {{ comment_count }} comments {% endblocktrans %}

{% render_comment_form for current_object %}
{% render_comment_list for current_object %} {% elif CYCLOPE_THEME_TYPE == 'classic' %}
{% blocktrans %} There are {{ comment_count }} comments {% endblocktrans %}
{% render_comment_list for current_object %}
{% render_comment_form for current_object %}
{% endif %}
{% endif %}