{% extends "forum/base.html" %} {% load i18n staticfiles %} {% block forumapp_styles %} {{ block.super }} {% endblock %} {% block forumapp_js_bottom %} {{ block.super }} {% endblock %} {% block forumapp_scripts %} {{ block.super }} $(document).ready(function(){ $('.markitup').markItUp(mySettings); }); {% endblock %} {% block forum_content %} {% include "forum/includes/breadcrumbs.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 %}