{% extends 'emails/base.html' %} {% block header %}{% endblock %} {% block footer %}{% endblock %} {% set event = registration.registration_form.event %} {% block subject -%} {% autoescape false -%} {% block subject_message %}{% endblock %} for {{ event.title }} {%- block subject_name %}: {{ registration.full_name }}{% endblock %} {%- endautoescape %} {%- endblock %} {% block body %}
{{ registration_header_banner_info() }} {% block body_content %}{% endblock %} {{ registration_footer_banner_info() }}
{% endblock %} {% macro registration_banner() %}
{{ registration_banner_text() }}
{% endmacro %} {% macro registration_event_details() %}

{{ render_registration_info() }} {{ render_text_pending() }} {{ render_text_unpaid() }}

{% if registration.state.name == 'pending' %} {{ registration.registration_form.message_pending | escape | urlize }} {% elif registration.state.name == 'unpaid' %} {{ registration.registration_form.message_unpaid | escape | urlize }} {% elif registration.state.name == 'complete' %} {{ registration.registration_form.message_complete | escape | urlize }} {% endif %}

{% endmacro %} {% macro registration_participant() %}


Participant: ref #{{ registration.friendly_id }} {{ registration_view_participant_text() }}

{% endmacro %} {% macro registration_view_details() %}
{{ registration_view_details_text() }}
{% endmacro %} {% macro registration_further_questions() %}

{%- if event.contact_emails and event.contact_title != 'Contact' -%} For further questions regarding {%- if registration.state.title == 'Rejected' -%} this registration, {% else %} the event, {% endif %} please contact {{ event.contact_title}}
{{ registration_further_questions_text() }} {% else %} For further questions regarding {%- if registration.state.title == 'Rejected' -%} this registration, {% else %} the event, {% endif %} please contact {{ event.creator.full_name }}
{{ registration_further_questions_text() }}{% endif %}

{% endmacro %} {% macro registration_header_banner_info() %}

Contact us 

Sign into account

{% endmacro %} {% macro registration_footer_banner_info() %}

GÉANT Vereniging (Association) is registered with the Chamber of Commerce in Amsterdam with registration number 40535155 and operates in the UK as a branch of GÉANT Vereniging. Registered office: Hoekenrode 3, 1102BR Amsterdam, The Netherlands. UK branch address: City House, 126-130 Hills Road, Cambridge CB2 1PQ, UK.

{% endmacro %} {% macro registration_line_divider() %}
{% endmacro %} {% block originalhtmlbody %}

Contact us 

Sign into account

Dear {{ registration.full_name }},
Your registration is confirmed following:

{{ render_registration_info() }} {{ render_text_pending() }} {{ render_text_unpaid() }}


Participant: ref #{{ registration.friendly_id }}

To view your registration on-line follow this link:
Show my registration

For further questions regarding the event, please contact {{ event.creator.full_name }}
{% if registration.state.name == 'complete' %} We look forward to welcoming you! {% endif %}

GÉANT Vereniging (Association) is registered with the Chamber of Commerce in Amsterdam with registration number 40535155 and operates in the UK as a branch of GÉANT Vereniging. Registered office: Hoekenrode 3, 1102BR Amsterdam, The Netherlands. UK branch address: City House, 126-130 Hills Road, Cambridge CB2 1PQ, UK.

{% endblock %}