{% if logged_in_user %}
{% trans %}Reply{% endtrans %}
{% endif %} {% set level = level + 1 %} {% if level <= max_post_nesting %} {% if post.children %} {% for post in Post.query.filter_by(parent=post).order_by(Post.date) %}
{% include "post.html" %}
{% endfor %} {% endif %} {% elif post.children %}
{% trans %}Comments hidden; click to go deeper.{% endtrans %}
{% endif %}