{% extends "base.html" %} {% block addcss %} {% endblock %} {% block bodyclass %}thread container{% endblock %} {% block title %}{{ thread["title"] }}{% endblock %} {% block body %}

{{ thread["title"] }}

{% set post = thread %} {% include "post.html" %} {% for ans in thread["data_thread"]["content"]["endorsed_responses"] %} {% set post = ans %} {% include "post.html" %} {% endfor %} {% for ans in thread["data_thread"]["content"]["non_endorsed_responses"] %} {% set post = ans %} {% include "post.html" %} {% endfor %}
{% endblock %}