* For testing, the page lists meeting materials regardless the submission cut off date. * Need to add Training sessions, IRTF RGs, and Interim WGs - Legacy-Id: 203
43 lines
1.8 KiB
HTML
43 lines
1.8 KiB
HTML
{% extends "base.html" %}
|
|
{% block title %} IETF {{ meeting_num }} Preliminary & Interim Materials {% endblock %}
|
|
{% block content %}
|
|
<link rel="stylesheet" type="text/css" href="https://www.ietf.org/css/base.css" />
|
|
<center>
|
|
<h2>IETF {{ meeting_num }} Preliminary & Interim Materials</h2>
|
|
<h4>Submission begin </h4>
|
|
<h4>Submission cutoff odate: </h4>
|
|
<h4>Corrections to submissions cutoff date: </h4>
|
|
<br>
|
|
Updated as of {% now "r" %}
|
|
<br><br>
|
|
|
|
{% regroup object_list|dictsort:"area" by area_name as areas %}
|
|
{% for wgs in areas %}
|
|
<table cellpadding="0" cellspacing="0" border="2" width="80%">
|
|
<tr>
|
|
<td colspan=2 bgcolor="#0911DC" valign="center"><font color="#FFFFFF"><center><br><h3><img src="https://www1.ietf.org/images/ib2.gif" width="100%" height=21><br>{{ wgs.grouper }}</h3></center></font>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
{% for wg in wgs.list|dictsort:"acronym" %}
|
|
<table cellpadding="0" cellspacing="0" border="2" width="80%">
|
|
<tr><a name="wg-{{ wg.acronym }}"></a>
|
|
<td align="center" bgcolor="#DDFFDD" width="20%"><b>{{ wg.acronym|upper }}</b><br>
|
|
{% if wg.agenda_file %}<a href="http://www3..ietf.org/proceedings/{{ wg.agenda_file }}">[Agenda]</a>{% endif %}{% if wg.minute_file %} <a href="http://www3.ietf.org/proceedings/{{ wg.minute_file }}">[Minutes]</a>{% endif %}</td>
|
|
<td><table border="1" width="100%">
|
|
{% include "meeting/submission_status_snippet.html" %}
|
|
{% for slide in wg.slides %}
|
|
<tr><td><a href="http://www3.ietf.org/proceedings/{{ slide.file_loc }}">{{ slide.slide_name }}</a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
{% endfor %}
|
|
{% endfor %}
|
|
|
|
</center>
|
|
{% endblock %}
|