{% trans "Email" as email_label %}
{% trans "Price" as price_label %}
{% for field in registrant %}
{% if field.name == "email" %}
{{ email_label }}: {{ field.value.0 }}
{% elif field.name in flat_ignore_fields %}
{% elif field.name == "pricing" %}
{% if not event.free_event %}
{% if not registrant.cleaned_data.override %}
{% with registrant.cleaned_data.pricing as pricing %}
{% trans 'Price:' %} {{ currency_symbol }}{{ registrant.cleaned_data.pricing.price }}
{% if pricing.include_tax %}
({% trans 'tax:' %} {{ currency_symbol }}{{ pricing.tax_amount }})
{% endif %}