{% load base_filters %} {% load forms_tags %}

{{ form.title }}

{% for field in fields %} {% if field.field.field_type == 'FileField' %} {% else %} {% if field.field.field_type == 'BooleanField' %} {% else %} {% if "Header" in field.field.field_type %} {% else %} {% if "Description" in field.field.field_type %} {% else %} {% endif %} {% endif %} {% endif %} {% endif %} {% endfor %}
{{ field.field.label }} {{ field.value|str_basename }}
{{ field.field.label }} {{ field.value|yesno:"Yes,No" }}
 
Section - {{ field.field.label }}
{{ field.field.label }}
{{ field.field.label }} {{ field.value }}
{% if form.custom_payment or form.recurring_payment %}

Payment Details

Type: {{ form.get_payment_type }}
Method: {{ entry.payment_method }}
Pricing: {{ entry.pricing.label }}
Price: {% if entry.pricing.price %}{{ entry.pricing.price|format_currency }}{% else %}{{ custom_price|format_currency }}{% endif %}

{% endif %} {% if form.send_email %}
{% if form.email_text %}

The recipient received the following message in an email:

{{ form.email_text|linebreaks|safe }} {% else %} The form submitter did not receive an email because no Email Text to Submitter was entered. {% endif %} {% endif %}