• {{ post.date | strftime("%A, %e %B %Y, %H:%M:%S") }}

{% if level %}

{{ post.subject }} #{{ post.number }}

{% else %}

{{ post.subject }} #{{ post.number }}

{% endif %} {% if not post.parent %}
{% endif %}

{{ post.html | safe }}

{% if logged_in_user %} {{ post.voteSum }} {% if post.owner_name == logged_in_user %} {% trans %}Edit{% endtrans %} {% endif %} {% endif %}
{% 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 %}