By date:
|
By track:
|
By room:
{% for room in summit.public_rooms %}
{% if edit %}
{% ifequal room.type 'plenary' %}
- {{ room.title }} (plenary)
{% else %}
- {{ room.title }} ({{ room.size }})
{% endifequal %}
{% else %}
{% ifequal room.type 'plenary' %}{% else %}
- {{ room.title }}
{% endifequal %}
{% endif %}
{% endfor %}
{% if summit.private_rooms %}
{% if edit %}
Private:
{% for room in summit.private_rooms %}
- {{ room.title }} ({{ room.size }})
{% endfor %}
{% endif %}
{% endif %}
|