{% 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" }}
 
{% trans 'Section' %} - {{ field.field.label }}
{{ field.field.label }}
{{ field.field.label }} {{ field.value }}
{% if form.custom_payment or form.recurring_payment %}

{% trans 'Payment Details' %}

{% trans 'Type' %}: {{ form.get_payment_type }}
{% trans 'Method' %}: {{ entry.payment_method }}
{% trans 'Pricing' %}: {{ entry.pricing.label }}
{% trans '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 %}

{% trans 'The recipient received the following message in an email' %}:

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