{% extends "admin.html" %} {% load url from future %} {% block headtitle %}Meeting Programme - {% endblock %} {% block meeting_information_active %}active{% endblock %} {% block content %}
{% if days %} {% for day in days %}

{{ day }}

{% if day.get_sessions %} {% for session in day.get_sessions %} {% endfor %}
Name Time Location Type Primary Subject
{{ session }} {{ session.start_time }} - {{ session.end_time }} {{ session.location }} {{ session.session_type }} {{ session.primary_subject }} Presentations ({{ session.get_presentations.count }})
{% else %}

There are no sessions setup for this day.

{% endif %} {% endfor %} {% else %}

There are no days setup.

{% endif %}

< Back to Meetings

{% endblock %}