{% extends "public/content.html" %} {% block headtitle %} Choose Sessions | {{ meeting.name }} {% endblock %} {% block left_content %}

Meeting Registration

{% endblock %} {% block title %}

{{ meeting.name }}

{% if meeting.link_to_agenda %}

View the Agenda

{% elif meeting.link_to_agenda_file %}

View the Agenda

{% endif %} {% endblock %} {% block content %}

Step 4 - Register For Sessions

Please indicate which sessions you will be attending. If you are only attending 1 day, please only select sessions on the day that you will be attending.

{% csrf_token %} {% for session_category in session_categories %} {% if session_category.get_sessions %} {% for session in session_category.get_sessions %} {% if session.bookable %} {% else %} {% endif %} {% endfor %} {% if session_category.only_one %} {% endif %}
{{ session_category }} Price
{{ session }}
{{ session.description|linebreaksbr }}
{% if session.cost %}£{{ session.cost|floatformat:2 }}{% endif %} {% if session.get_quantity_remaining > 0 %} {% else %} Fully Booked {% endif %} This session is fully booked
I am not attending a session at this time
{% endif %} {% endfor %}
{% endblock %}