{% extends "forums/base.html" %} {% from "layout/errorlist.html" import errorlist %} {% from "includes/common_macros.html" import content_editor with context %} {# L10n: {f} if the name of the forum. #} {% set title = _('Create a new thread | {f} | Forums')|f(f=forum.name) %} {% set crumbs = [(url('forums.forums'), _('Forums')), (url('forums.threads', forum.slug), forum.name), (None, _('Create a new thread'))] %} {% set scripts = ('forums',) %} {% set ga_content_group = "contributor-forum-thread-create" %} {% block content %}

{{ _('Create a new thread') }}

{% csrf_token %} {{ errorlist(form) }} {% if request.limited %}
{{ _('You have exceeded the number of threads and replies that can be posted in a given amount of time. Please try again shortly.') }}
{% endif %} {% for field in form %}
{{ field.label_tag()|safe }} {% if field.name == 'content' %}
{{ content_editor(field) }}
{% else %} {{ field|safe }} {% endif %}
{% endfor %}
{{ _('Cancel') }}
{% if post_preview %} {% include "forums/includes/post_preview.html" %} {% endif %}
{% endblock %}