{% trans 'Description' %}: {{ payment.description }}
{% trans 'Total' %}: {{ payment.amount|format_currency }}
{% if form.errors.values %}
{{ form.non_field_errors }}
{% for field in form %}
{% if field.errors %}
{% for error in field.errors %}
{{ field.label_tag }} – {{ error }}
{% endfor %}
{% endif %}
{% endfor %}
{{ billing_info_form.non_field_errors }}
{% for field in billing_info_form %}
{% if field.errors %}
{% for error in field.errors %}