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

Days

Add Day


{% if days %} {% for day in days %} {% endfor %}
Name
{{ day }}
{% else %}

There are no days setup for this meeting

{% endif %}

Locations

Add Location


{% if locations %} {% for location in locations %} {% endfor %}
Name
{{ location }}
{% else %}

There are no locations setup for this meeting

{% endif %}

Session Types

Add Session Type


{% if session_types %} {% for session_type in session_types %} {% endfor %}
Name
{{ session_type }}
{% else %}

There are no session types setup.

{% endif %}

Subjects

Add Subject


{% if subjects %} {% for subject in subjects %} {% endfor %}
Name
{{ subject }}
{% else %}

There are no Subjects setup.

{% endif %}

< Back to Programme

{% endblock %}