{% load i18n %}
{% 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 %}