General information
-
{{ print_dt('Registrant ID') }}
{{ print_dd(registrant.getId()) }}
{%- if reg_details.reason %}
{{ print_dt('Participation reason') }}
{{ print_dd(reg_details.reason) }}
{%- endif %}
Accommodation details
-
{{ print_dt('Arrival date') }}
{{ print_dd(reg_details.accommodation_arrival) }}
{{ print_dt('Departure date') }}
{{ print_dd(reg_details.accommodation_departure) }}
{{ print_dt('Accommodation type') }}
{{ print_dd(reg_details.accommodation_type) }}
Sessions
{%- if reg_details.sessions_type %}-
{{ print_dt('First priority') }}
{{ print_dd(reg_details.sessions[0]) }}
{% if reg_details.sessions[1] %}
{{ print_dt('Other option') }}
{{ print_dd(reg_details.sessions[1]) }}
{%- endif %}
-
{%- for session in reg_details.sessions %}
- {{ session }} {%- endfor %}
Social events
-
{% for name, places in reg_details.social.iteritems() %}
- {{ name }} [{{ places }} place(s) needed] {%- endfor %}
{{ title }}
-
{%- for name, value_attrs in fields.iteritems() if value_attrs.value %}
{{ print_dt(name, value_attrs.value) }}
{%- if value_attrs.value -%}
{% set description = value_attrs.value %}
{% if value_attrs.price -%}
{% set description = description + ' (' + value_attrs.price + ' ' + value_attrs.currency + ')' %}
{%- endif %}
{{ print_dd(description) | safe }}
{%- endif %}
{%- endfor %}
Additional information
{{ registration_email_msg }}
To manage your registration, follow this link: Manage my registration
{% endblock %}