{% extends "base.html" %} {# Copyright The IETF Trust 2021, All Rights Reserved #} {% load origin %} {% load static %} {% load ietf_filters %} {% load textfilters %} {% load htmlfilters %} {% block title %} IETF {{ schedule.meeting.number }} meeting agenda personalization {% endblock %} {% block morecss %} tr:not(:first-child) th.gap { height: 3em !important; background-color: inherit !important; border: none !important; } tr:first-child th.gap { height: 0 !important; background-color: inherit !important; border: none !important; } div.tz-display { margin-bottom: 0.5em; margin-top: 1em; text-align: right; } .tz-display a { cursor: pointer; } .tz-display label { font-weight: normal; } .tz-display select { min-width: 15em; } #affix .nav li.tz-display { padding: 4px 20px; } #affix .nav li.tz-display a { display: inline; padding: 0; } {% endblock %} {% block bodyAttrs %}data-spy="scroll" data-target="#affix"{% endblock %} {% block content %} {% origin %}
{% include "meeting/meeting_heading.html" with meeting=schedule.meeting updated=updated selected="select-sessions" title_extra="" %}
{# cache this part -- it takes 3-6 seconds to generate #} {% load cache %} {% cache cache_time ietf_meeting_agenda_personalize schedule.meeting.number request.path %}

Session Selection

Meeting | Local | UTC
{% if is_current_meeting %}

Note: IETF agendas are subject to change, up to and during a meeting.

{% endif %} {% include "meeting/agenda_filter.html" with filter_categories=filter_categories always_show=True %} {% include "meeting/agenda_personalize_buttonlist.html" with meeting=schedule.meeting only %}

Individual Sessions

Check boxes below to select individual sessions.

{% for item in filtered_assignments %} {% ifchanged item.timeslot.time|date:"Y-m-d" %} {% endifchanged %} {% if item.timeslot.type_id == 'regular' %} {% ifchanged %} {% endifchanged %} {% endif %} {% if item.timeslot.type.slug == 'break' or item.timeslot.type.slug == 'reg' or item.timeslot.type.slug == 'other' %} {% endif %} {% if item.timeslot.type_id == 'regular' or item.timeslot.type.slug == 'plenary' %} {% if item.session.historic_group %} {% if item.timeslot.type.slug == 'plenary' %} {% else %} {% endif %} {% endif %} {% endif %} {% endfor %}
{# The anchor here needs to be in a div, not in the th, in order for the anchor-target margin hack to work #}
{{ item.timeslot.time|date:"l, F j, Y" }}
{{ item.timeslot.time|date:"l" }} {{ item.timeslot.name|capfirst_allcaps }}
{% if item.session_keyword %} {% endif %} {% if item.timeslot.show_location and item.timeslot.get_html_location %} {% if schedule.meeting.number|add:"0" < 96 %} {% comment %}{% endcomment $} {{ item.timeslot.get_html_location }} {% comment %}{% endcomment %} {% elif item.timeslot.location.floorplan %} {{ item.timeslot.get_html_location }} {% else %} {{ item.timeslot.get_html_location }} {% endif %} {% with item.timeslot.location.floorplan as floor %} {% if item.timeslot.location.floorplan %} {% endif %} {% endwith %} {% endif %} {% if item.session.agenda %} {{ item.timeslot.name }} {% else %} {{ item.timeslot.name }} {% endif %} {% if item.session.current_status == 'canceled' %} CANCELLED {% endif %}
{% if item.session_keyword %} {% endif %} {% if item.timeslot.show_location and item.timeslot.get_html_location %} {% if schedule.meeting.number|add:"0" < 96 %} {% comment %}{% endcomment %} {{ item.timeslot.get_html_location }} {% comment %}{% endcomment %} {% elif item.timeslot.location.floorplan %} {{ item.timeslot.get_html_location }} {% else %} {{ item.timeslot.get_html_location }} {% endif %} {% endif %} {% with item.timeslot.location.floorplan as floor %} {% if item.timeslot.location.floorplan %} {% endif %} {% endwith %} {% if item.timeslot.show_location and item.timeslot.get_html_location %} {% if schedule.meeting.number|add:"0" < 96 %} {% comment %}{% endcomment %} {{ item.timeslot.get_html_location }} {% comment %}{% endcomment %} {% elif item.timeslot.location.floorplan %} {{ item.timeslot.get_html_location }} {% else %} {{ item.timeslot.get_html_location }} {% endif %} {% endif %} {% if item.session.historic_group %} {{ item.session.historic_group.acronym }} {% else %} {{ item.session.historic_group.acronym }} {% endif %} {% if item.session.agenda %} {% endif %} {% if item.timeslot.type.slug == 'plenary' %} {{ item.timeslot.name }} {% else %} {{ item.session.historic_group.name }} {% endif %} {% if item.session.agenda %} {% endif %} {% if item.session.current_status == 'canceled' %} CANCELLED {% endif %} {% if item.session.historic_group.state_id == "bof" %} BOF {% endif %} {% if item.session.current_status == 'resched' %} RESCHEDULED {% if item.session.rescheduled_to %} TO {% if "-utc" in request.path %} {{ item.session.rescheduled_to.utc_start_time|date:"l G:i"|upper }}- {{ item.session.rescheduled_to.utc_end_time|date:"G:i" }} {% else %} {{ item.session.rescheduled_to.time|date:"l G:i"|upper }}- {{ item.session.rescheduled_to.end_time|date:"G:i" }} {% endif %} {% endif %} {% endif %} {% if item.session.agenda_note|first_url|conference_url %}
{{ item.session.agenda_note|slice:":23" }} {% elif item.session.agenda_note %}
{{ item.session.agenda_note }} {% endif %}
{% include "meeting/agenda_personalize_buttonlist.html" with meeting=schedule.meeting only %}
{% endcache %} {# make the timezone available to JS #} {% endblock %} {% block js %} {% endblock %}