{% load i18n wagtailsettings_tags coyote_tags %} {% get_settings %}
{% if self.title %}

{{self.title}}

{% endif %} {% if self.body %}
{{ self.body }}
{% endif %} {% optional_url 'contact_form:contact-form-handler' as contact_form_url %} {% if contact_form_url %}
{% csrf_token %}
{% for field in form %}
{% render_optional_template 'oscar/partials/form_field.html' field=field placeholder=field.field.widget.attrs.placeholder nolabel=True as rendered_field %} {% if rendered_field %} {{ rendered_field }} {% else %} {{ field }} {% endif %}
{% endfor %}
{% else %}

{% trans "The contact form is currently unavailable." %}

{% endif %}