{% extends "forum/base.html" %} {% load i18n %} {% block extra-css %} {% endblock %} {% block extra-js %} {% endblock %} {% block forum_content %} {% include "forum/parent_tree.html" %} {% if thread_form.non_field_errors %}
{{ thread_form.non_field_errors }} {{ reply_form.non_field_errors }}
{% endif %}

New thread for {{ forum }}

{% csrf_token %} {% with thread_form as form %} {% include "forum/form.html" %} {% endwith %} {% with reply_form as form %} {% include "forum/form.html" %} {% endwith %}
{% endblock %}