{% load i18n %} {% load widget_tweaks %} {% if post_form.non_field_errors %} {% for error in post_form.non_field_errors %}
{{ error }}
{% endfor %} {% endif %} {% include "partials/form_field.html" with field=post_form.subject %} {% include "partials/form_field.html" with field=post_form.content %} {% if post_form.username %} {% include "partials/form_field.html" with field=post_form.username %} {% endif %} {% if post_form.update_reason %} {% include "partials/form_field.html" with field=post_form.update_reason %} {% endif %}

{% with field=post_form.enable_signature %}
{% endwith %} {% if post_form.lock_topic %} {% with field=post_form.lock_topic %}
{% endwith %} {% endif %}
{% if attachment_formset %}

{% trans "Attachments" %}

{% include "forum_conversation/forum_attachments/attachment_formset.html" %}
{% endif %}