{% extends "_layouts/base.html" %} {% load i18n %} {% block page_title %}{% trans "Contact" %}{% endblock page_title %} {% block page_class %}contact{% endblock page_class %} {% block content %}

{% trans "Contact" %}

{% if recipient %} {% include "contact/partials/contact_recipient.html" %} {% endif %}
{% csrf_token %} {% for field in form %} {% if field.is_hidden %} {{ field }} {% else %}
{{ field }} {% if field.errors %} {{ field.errors }} {% endif %}
{% endif %} {% endfor %}
{% include "contact/partials/aside.html" %}
{% endblock content %}