{% load i18n leprikon_tags %}
{% trans 'registration number' %}: {{ reg.variable_symbol }}
{% for participant in reg.all_participants %}
{{ participant.participant }}
{{ participant.participant.birth_date }}
{{ participant.participant.age_group }}
{{ participant.participant.address }}
{% if participant.participant.contact %}
{{ participant.participant.contact }}
{% endif %}
{{ participant.participant.school_and_class }}
{{ participant.participant.health | linebreaks }}
{% for parent in participant.parents %}
{{ parent.full_name }}, {{ parent.address }}
{{ parent.contact }}
{% endfor %} {% for qa in participant.get_questions_and_answers %}
{{ qa.answer }}
{% endfor %} {% include 'leprikon/registration_participant_presence.html' %} {% endfor %} {% if reg.all_group_members %}
{{ reg.group_name }}
{{ reg.target_group }}
{{ reg.group_leader_full_name }}
{{ reg.group_leader_address }}
{% if reg.group_leader_contact %}
{{ reg.group_leader_contact }}
{% endif %} {% if reg.target_group.require_school %}
{{ reg.group_school_and_class }}
{% endif %}
{{ reg.group_members_list_html }}
{% endif %}
{% for agreement in reg.all_agreements %} {{ agreement.name }}:
{% for option in agreement.all_options %} {% if option.required or option in object.all_agreement_options %}☑{% else %}☐{% endif %} {{ option.name }}
{% endfor %} {% endfor %}
{% include 'leprikon/registration_payments.html' %}