{% extends "base.html" %}{% load ietf_filters %} {# Copyright The IETF Trust 2007, All Rights Reserved #} {% block title %}IETF {{ meeting_num }} Preliminary & Interim Materials{% endblock %} {% block morecss %} table.ietf-materials { width: 99%; border-bottom:1px solid #cbcbcb; nopadding: 0; margin: 0; vertical-align: top; border-collapse: collapse;} table.ietf-materials tr {vertical-align: top; } table.ietf-materials td { padding:0.5em 0; } {% endblock morecss %} {% block content %}

IETF {{ meeting_num }} Meeting Materials

{% if sub_began %}

Submission cutoff date: {{ cut_off_date|date:"F j, Y" }}
Corrections to submissions cutoff date: {{ cor_cut_off_date|date:"F j, Y" }}

{% endif %}

Meeting Materials Manager (for session chairs only; password required)

{# cache for 15 minutes, as long as there's no proceedings activity. takes 4-8 seconds to generate. #} {% load cache %} {% cache 900 ietf_meeting_materials meeting_num cache_version %} {% if plenaries %}

Plenaries

{% for session in plenaries %} {% include "meeting/list_group.html" %} {% endfor %} {% endif %} {% regroup ietf|dictsort:"group.parent.id" by group.parent.name as areas %} {% for sessions in areas %}

{{ sessions.grouper }}

{% for session in sessions.list|dictsort:"group.acronym" %} {% include "meeting/list_group.html" %} {% endfor %} {% endfor %} {% if training %}

Training

{% for session in training %} {% include "meeting/list_group.html" %} {% endfor %} {% endif %} {% if irtf %}

IRTF

{% for session in irtf|dictsort:"group.acronym" %} {% include "meeting/list_group.html" %} {% endfor %} {% endif %} {% endcache %} {% endblock %}