{% extends "forum/base.html" %} {% load i18n %} {% block styles %} {{ block.super }} {% endblock %} {% block scripts %} {{ block.super }} {% 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 %}