{% load i18n %} {% if form %}
{{ contact.email_label }} {{ form.email }} {% if form.email.errors %} {% for error in form.email.errors %} {{ error }} {% endfor %} {% endif %}
{{ contact.subject_label }} {{ form.subject }} {% if form.subject.errors %} {% for error in form.subject.errors %} {{ error }} {% endfor %} {% endif %}
{{ contact.content_label }} {{ form.content }} {% if form.content.errors %} {% for error in form.content.errors %} {{ error }} {% endfor %} {% endif %}