{% extends "base.html" %} {# Copyright The IETF Trust 2015, All Rights Reserved #} {% load origin %} {% load cache %} {% load ietf_filters staticfiles classname %} {% block pagehead %} {% endblock %} {% block bodyAttrs %}data-spy="scroll" data-target="#affix"{% endblock %} {% block title %}Upcoming Meetings{% endblock %} {% block content %} {% origin %}

Upcoming Meetings

For more on regular IETF meetings see here

{% if menu_entries %} {% endif %} {% if menu_actions %}
{% for name, url in menu_actions %} {{ name }} {% endfor %}
{% endif %} {% cache 600 upcoming-meetings entries.count %} {% if entries %} {% for entry in entries %} {% if entry|classname == 'Meeting' %} {% with meeting=entry %} {% endwith %} {% elif entry|classname == 'Session' %} {% with session=entry meeting=entry.meeting%} {% if session.current_status == 'canceled' %} {% else %} {% endif %} {% endwith %} {% else %} {% endif %} {% endfor %}
Date Group Meeting  
{{ meeting.date }} - {{ meeting.end }} ietf IETF {{ meeting.number }} {{ session.official_timeslotassignment.timeslot.utc_start_time | date:"Y-m-d H:i"}} - {{ session.official_timeslotassignment.timeslot.utc_end_time | date:"H:i e" }} {{ session.group.acronym }} {{ session.meeting.number }} CANCELLED {% include "meeting/interim_session_buttons.html" with show_agenda=True %} Unexpected entry type: {{entry|classname}}
{% else %}

No upcoming meetings

{% endif %} {% endcache %}
{% endblock %} {% block js %} {% endblock %}