{% macro comment_template(item) %}
{{ item.user_info.complete_name }}
{{ item.actions }}

{{ item.title }}

{{ item.content }}
{% if item.files %} {% endif %}
{{ item.form_ranking }}
{% import _self as nested %} {% for item2 in item.comments %} {{ nested.comment_template(item2) }} {% endfor %}
{% endmacro %} {% import _self as nested %}
{{ post.actions }}

{{ post.title }}

  • {{ post.post_date }}
  • {{ 'XComments'|get_lang|format(post.n_comments) }}
  • {{ post.author }}
  • {{ post.score_ranking }}
{{ post.content }}
{% if post.files %} {% endif %} {{ post.frm_rating ?: '' }}

{{ 'XComments'|get_lang|format(post.n_comments) }}

{% for item in post.comments %} {{ nested.comment_template(item) }} {% endfor %}
{{ post.form_html }}