{% for c in root['children'] %} {% set comment = c['comment'] %} {% set children = c['children'] %}
  • {% set comment_profile_link = profile_link(comment.user, True) %} {% trans %} {{comment_profile_link}} said, {% endtrans %}

    {% set comment_id = comment.id | e %} {% set display_name = comment.user.username | e %} {% set comment_isotime = comment.date_submitted | isotime | e %} {% set comment_timesince = comment.date_submitted | timesince | e %} {% trans %} Posted {% endtrans %}

    {{ comment.comment | nl2br }}
    {% if request.user.is_authenticated() %} {% if comment.depth < 4 %}
    {{ csrf() }}

    {% endif %} {% endif %} {% if children | length %}
      {{ comments_tree(request, object, c) }}
    {% endif %}
  • {% endfor %}