{% extends "oneevent/base.html" %} {% load crispy_forms_tags %} {% block navbar_header_text %}Registration{% endblock %} {% block heading_action %}Register{% endblock %} {% block heading_title %}{{ booking.event.title }} {{ booking.event.start|date:"D, d N Y H:i" }} {% endblock %} {% block content %}
{% if booking.person != user %}

You are editing a booking for: {{booking.person.get_full_name}}

{% endif %} {% include "oneevent/event_description_panel_part.html" with event=booking.event price=booking.must_pay only %}
Registration status

{% if booking.is_cancelled %} Not Confirmed/Cancelled (by {{booking.cancelledBy.get_full_name}} on {{booking.cancelledOn|date:"D, d N Y H:i"}}) {% else %} Confirmed

{% endif %} {% if not booking.is_cancelled or booking.paidTo %}

{% if booking.exempt_of_payment %} Exempted of payment by {{booking.paidTo.get_full_name}} on {{booking.datePaid|date:"D, d N Y H:i"}} {% elif booking.paidTo %} Paid to {{booking.paidTo.get_full_name}} on {{booking.datePaid|date:"D, d N Y H:i"}} {% elif booking.must_pay == 0 %} {% if booking.exempt_of_payment %} Exempted of payment by {{booking.paidTo.get_full_name}} on {{booking.datePaid|date:"D, d N Y H:i"}} {% else %} No payment needed {% endif %} {% else %} Please pay {{ booking.must_pay }}{% if booking.event.price_currency %}({{booking.event.price_currency}}){% endif %} to an organiser. {% endif %} {% endif %}

{% if not booking.is_cancelled %}

Receive Calendar Entry Unregister

{% endif %}
{% if booking.event.choices.count > 0 %} Your choices {% else %} Update registration {% endif %}
{% crispy choices_form %}
{% endblock %}