Comments

{% macro render_comment(item, depth=0) %}
{{ item.votes.up - item.votes.down }}
{{ item.comment['content'] }}
{% set attachments = item.get('attachments', []) %} {% if attachments %} {% include "_attachment_display.html" %} {% endif %}
{% if user and item.comment['user_uid'] == user['uid'] %}
{% endif %}
{% if item.children %}
{% for child in item.children %} {{ render_comment(child, depth + 1) }} {% endfor %}
{% endif %}
{% endmacro %} {% for item in comments %} {{ render_comment(item, 0) }} {% else %}

No comments yet. Start the discussion.

{% endfor %} {% if user %}
{{ user['username'] }}
{% endif %}