{% 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 %}
{% blocktrans with l=field.field.label %}{{ l }}{% endblocktrans %} {% blocktrans with n=field.value|str_basename %}{{ n }}{% endblocktrans %}
{% blocktrans with l=field.field.label %}{{ l }}{% endblocktrans %} {% blocktrans with v=field.value|yesno:"Yes,No" %}{{ v }}{% endblocktrans %}
 
{% trans 'Section' %} - {% blocktrans with l=field.field.label %}{{ l }}{% endblocktrans %}
{% blocktrans with l=field.field.label %}{{ l }}{% endblocktrans %}
{% blocktrans with l=field.field.label %}{{ l }}{% endblocktrans %} {% blocktrans with v=field.value %}{{ v }}{% endblocktrans %}
{% 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' %}:

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