{% extends "pilot/base.html" %} {% block content %}

{{message}}

Done!

Click above to keep adding and dropping PILOT sessions until Sunday, September 1st at 9pm.

You were successfully enrolled in the following PILOT sections:

{% if enrolled|length > 0 %}
{% for meeting in enrolled %}

{{ meeting.course_name }}

{{ meeting.time_start}} - {{meeting.time_end}} {{ meeting.day }}

{% endfor %}
{% else %}
You are not enrolled in any sections..
{% endif %}
You were waitlisted for the following PILOT sections:

{% if waitlisted|length > 0 %}
{% for meeting in waitlisted %}

{{ meeting.course_name }}

{{ meeting.time_start}} - {{meeting.time_end}} {{ meeting.day }}

{% endfor %}
{% else %}
You are not waitlisted for any sections.
{% endif %}
{% csrf_token %}

{% endblock content %}