{% extends "wafer/base.html" %} {% load static %} {% block title %}{{ WAFER_CONFERENCE_NAME }} - Day Trip{% endblock %} {% block content %}

{{ WAFER_CONFERENCE_NAME }} Day Trip Registration

{% if registered_option %}

Registered

Registered for {{ registered_option.description|linebreaksbr }}
{% if registered_option.position > registered_option.capacity %}
Waitlisted, currently in position {{ registered_option.position }} but there are only {{ registered_option.capacity }} spaces.
{% elif registered_option.insurance_price %}

Travel Insurance

{% if request.user.attendee.travel_insurance %}
Registered
Edit Travel Insurance
{% elif DAYTRIP_INSURANCE_OPEN %}
This day trip has an option for registering for group travel insurance. The cost is {{ DEBCONF_BILLING_CURRENCY_SYMBOL }} {{ registered_option.insurance_price }} per attendee. Details.
Register for Travel Insurance {% endif %} {% endif %}

Payment

{% if request.user.attendee.paid %}
Paid
{% else %}
Not yet paid
{% if not request.user.attendee.invoice_outdated %} {% else %}
  • Create Invoice
  • {% endif %} {% endif %}
    {% elif DAYTRIP_OPEN %}

    Not currently registered for a day trip, you can register for one below, if there's still space. Your name will be displayed to other conference attendees on this page.

    {% endif %}

    Options

    {% for option in options %}
    {{ option.description }}
    Cost: {{ DEBCONF_BILLING_CURRENCY_SYMBOL }} {{ option.price }}
    {% if option.details_pdf %} {% endif %} {{ option.long_description | linebreaksbr}}
    Registered: {{ option.total_registered }} / {{ option.capacity }}
    Attendees:
      {% for attendee in option.attendees %} {% if forloop.counter0 == option.capacity %}
      {% endif %}
    1. {{ attendee.user.userprofile.display_name }}
    2. {% endfor %}
    {% if DAYTRIP_OPEN %}
    {% csrf_token %} {% if option.position %} {% elif option.total_registered < option.capacity %} {% else %} {% endif %}
    {% endif %}
    {% endfor %}
    {% endblock %}