{% macro render_comment_pre(comment) %}

{{ comment.author }}

{{ comment.text }}

{% endmacro %} {% macro render_comment_post(comment) %} {% for c in comment.children %} {{ render_comment(c) }} {% endfor %}
{% endmacro %} {% macro render_comment(comment) %} {{ render_comment_pre(comment) }} reply {{ render_comment_post(comment) }} {% endmacro %} {% macro reply() %} {% if 'user_id' in session %}

{% endif %} {% endmacro %}