{% load i18n %}

1. {% trans "Choose your type of support" %}

{{ form.amount }} {{ form.monthly }} {{ form.method }}
{% trans "one-time" %} {% trans "monthly" %}

2. {% trans "Choose the amount" %}

{% for amount in club.proposed_monthly_amounts %} {{ amount }} {% endfor %} {% trans "different amount" %}
{% include 'club/payment/payu-re.html' %}

3. {% trans "Provide contact details" %}


{{ form.first_name }}

{{ form.last_name }}


{{ form.email }}


{{ form.phone }}


{{ form.postal }}
{{ form.postal_code }} {{ form.postal_town }}
{{ form.postal_country }}

{% for c, key, consent_field in form.consent %}

{{ consent_field }}

{% endfor %}

{{ form.agree_newsletter }}

{% trans 'You can unsubscribe at any point. More in the privacy policy.' %}

{{ form.data_processing|safe }}