{# -*- engine:django -*- #} {% extends "core/base.html" %} {% load i18n static rules material_form %} {% load render_table from django_tables2 %} {% block browser_title %}Event registration {{ registration }}{% endblock %} {% block content %}
{% if can_manage_registration %} {% trans "Edit" %} {% trans "Check in" %} {% endif %} {% if can_retract_registration %} {% trans "Retract" %} {% endif %} {% if can_delete_registration %} {% trans "Delete" %} {% endif %} {% if can_send_notification %} {% trans "Notification" %} {% endif %} {% if can_view_invoice %} {% trans "Invoice" %} {% endif %} {% if can_change_person %} {% trans "Edit person" %} {% endif %}
{% endif %}
{% endif %}
| person | {{ registration.person.first_name }} | {{ registration.person.additional_name }} | {{ registration.person.last_name }} | |
| face | {{ registration.person.get_sex_display }} | |||
| home | {{ registration.person.street }} {{ registration.person.housenumber }} | {{ registration.person.postal_code }} {{ registration.person.place }} | ||
| phone | {{ registration.person.phone_number }} | {{ registration.person.mobile_number }} | ||
| {{ registration.person.email }} | ||||
| cake | {{ registration.person.date_of_birth|date }} | |||
| school | {{ registration.school_class }} | {{ registration.school }} | {{ registration.school_place }} | |
| {% trans "True" %} | |
| {{ registration.retracted_date }} |
| local_activity | {{ registration.event }} | ||
| redeem | {{ registration.donation }}€ | ||
| {{ field }} | {{ value }} | ||
| {{ term }} | {% trans "Accepted" %} | ||
| medical_services | {{ registration.medical_information }} | ||
| question_answer | {{ registration.comment }} | ||
| {% if registration.checked_in %} {{ registration.checked_in_date }} {% else %} {% trans "No checked in yet." %} {% endif %} | |||
| {{ invoice.billing_first_name }} {{invoice.billing_last_name }} | |
| {{ invoice.billing_address_1 }} {{ invoice.billing_address_2 }} | |
| {{ invoice.billing_postcode }} {{ invoice.billing_city}} | |
| {{ invoice.billing_email }} |
| {{ invoice.variant }} | |
| {{ invoice.get_status_display }} | |
| {{ invoice.due_date }} | |
| {% trans "Mark payed" %} |
| person | {{ person.first_name }} | {{ person.additional_name }} | {{ person.last_name }} | |
| face | {{ person.get_sex_display }} | |||
| home | {{ person.street }} {{ person.housenumber }} | {{ person.postal_code }} {{ person.place }} | ||
| phone | {{ person.phone_number }} | {{ person.mobile_number }} | ||
| {{ person.email }} | ||||
| cake | {{ person.date_of_birth|date }} | |||