IETF {{ meeting.number }} meeting materials
{% if submission_started %}
Submission cutoff date: {{ cut_off_date|date:"F j, Y" }}
Corrections to submissions cutoff date: {{ cor_cut_off_date|date:"F j, Y" }}
{% endif %}
{% if user|has_role:"Secretariat" %}
Edit meeting hosts
Secretariat proceedings functions
{% if meeting.end_date.today > meeting.end_date %}
Send request for minutes
{% endif %}
{% endif %}
Meeting requests/conflicts
{% include 'meeting/proceedings/materials_table.html' with meeting=meeting proceedings_materials=proceedings_materials user=user only %}
{% with "True" as show_agenda %}
{% if plenaries %}
Plenaries
{% if user|has_role:"Secretariat" or user_groups %}
| Group |
Agenda |
Minutes |
Slides |
Drafts |
Updated |
|
{% else %}
Group |
Agenda |
Minutes |
Slides |
Drafts |
Updated |
{% endif %}
{% for session in plenaries %}
{% include "meeting/group_materials.html" %}
{% endfor %}
{% endif %}
{% regroup ietf|dictsort:"group.parent.acronym" by group.parent.name as areas %}
{% for sessions in areas %}
{{sessions.list.0.group.parent.acronym|upper}} {{ sessions.grouper }}
{% if user|has_role:"Secretariat" or user_groups %}
| Group |
Agenda |
Minutes |
Slides |
Drafts |
Updated |
|
{% else %}
Group |
Agenda |
Minutes |
Slides |
Drafts |
Updated |
{% endif %}
{% for session in sessions.list|dictsort:"group.acronym" %}
{% ifchanged session.group.acronym %}
{% include "meeting/group_materials.html" %}
{% endifchanged %}
{% endfor %}
{% endfor %}
{% if training %}
{% with "False" as show_agenda %}
Training
{% if user|has_role:"Secretariat" or user_groups %}
| Group |
Agenda |
Minutes |
Slides |
Drafts |
Updated |
|
{% else %}
Group |
Agenda |
Minutes |
Slides |
Drafts |
Updated |
{% endif %}
{% for session in training %}
{% ifchanged %} {# TODO: Find a better way to represent purposed sessions in both materials and proceedings #}
{% include "meeting/group_materials.html" %}
{% endifchanged %}
{% endfor %}
{% endwith %}
{% endif %}
{% if iab %}
IAB Internet Architecture Board
{% if user|has_role:"Secretariat" or user_groups %}
| Group |
Agenda |
Minutes |
Slides |
Drafts |
Updated |
|
{% else %}
Group |
Agenda |
Minutes |
Slides |
Drafts |
Updated |
{% endif %}
{% for session in iab %}
{% ifchanged session.group.acronym %}
{% include "meeting/group_materials.html" %}
{% endifchanged %}
{% endfor %}
{% endif %}
{% if irtf %}
IRTF Internet Research Task Force
{% if user|has_role:"Secretariat" or user_groups %}
| Group |
Agenda |
Minutes |
Slides |
Drafts |
Updated |
|
{% else %}
Group |
Agenda |
Minutes |
Slides |
Drafts |
Updated |
{% endif %}
{% for session in irtf|dictsort:"group.acronym" %}
{% ifchanged session.group.acronym %}
{% include "meeting/group_materials.html" %}
{% endifchanged %}
{% endfor %}
{% endif %}
{% if other %}
Other Miscellaneous other sessions
{% if user|has_role:"Secretariat" or user_groups %}
| Group |
Agenda |
Minutes |
Slides |
Drafts |
Updated |
|
{% else %}
Group |
Agenda |
Minutes |
Slides |
Drafts |
Updated |
{% endif %}
{% for session in other|dictsort:"group.acronym" %}
{% ifchanged session.group.acronym %}
{% include "meeting/group_materials.html" %}
{% endifchanged %}
{% endfor %}
{% endif %}
{% endwith %}