{% extends "base.html" %} {# Copyright The IETF Trust 2015-2020, All Rights Reserved #} {% load origin %} {% load staticfiles %} {% load ietf_filters %} {% load bootstrap3 %} {% block title %}{{ schedule.name }}: IETF {{ meeting.number }} meeting agenda{% endblock %} {% block js %} {% endblock js %} {% block content %} {% origin %}

Other Agendas

Meeting time slots and misc. sessions for agenda: {{ schedule.name }} {% if not can_edit %}(you do not have permission to edit time slots){% endif %}

{% for day in day_grid %}
{{ day.day|date:"l" }} {{ day.day|date:"N j, Y" }}
{% for room, timeslots in day.room_timeslots %}
{{ room.name }} {% if room.capacity %}{{ room.capacity }}{% endif %}
{% for t in timeslots %}
{% for s in t.assigned_sessions %} {% if s.name %} {{ s.name }} {% if s.group %} ({{ s.group.acronym }}) {% endif %} {% elif s.group %} {{ s.group.acronym }} {% endif %} {% empty %} {% if t.type_id == 'regular' %} (session) {% elif t.name %} {{ t.name }} {% else %} {{ t.type.name }} {% endif %} {% endfor %} {{ t.time|date:"G:i" }}-{{ t.end_time|date:"G:i" }}
{% endfor %}
{% endfor %}
{% endfor %}
{% if edit_timeslot_form %} {% include "meeting/edit_timeslot_form.html" with timeslot_form_action='edit' timeslot_form=edit_timeslot_form %} {% elif add_timeslot_form %} {% include "meeting/edit_timeslot_form.html" with timeslot_form_action='add' timeslot_form=add_timeslot_form %} {% endif %}
{% endblock %}