{% if user|has_role:"Secretariat" and not meeting.proceedings_final %}
Finalize Proceedings
{% endif %}
{# cache for 15 minutes, as long as there's no proceedings activity. takes 4-8 seconds to generate. #}
{% load cache %}
{% cache 900 ietf_meeting_proceedings meeting.number cache_version %}
{% include 'meeting/proceedings/title.html' with meeting=meeting attendance=attendance only %}
{% include 'meeting/proceedings/introduction.html' with meeting=meeting only %}
{% with "True" as show_agenda %}
{% if plenaries %}
Plenaries
| Group |
Artifacts |
Recordings |
Slides |
Drafts |
{% for session in plenaries %}
{% include "meeting/group_proceedings.html" %}
{% endfor %}
{% endif %}
{% for area, meeting_sessions, not_meeting_sessions in ietf_areas %}
{{ area.acronym|upper }} {{ area.name }}
{% if meeting_sessions %}
| Group |
Artifacts |
Recordings |
Slides |
Drafts |
{% for session in meeting_sessions %}
{% ifchanged session.group.acronym %}
{% include "meeting/group_proceedings.html" %}
{% endifchanged %}
{% endfor %}
{% endif %}
{% if not_meeting_sessions %}
{{ area.name }} groups not meeting:
{% for session in not_meeting_sessions %}
{% ifchanged session.group.acronym %}
{{ session.group.acronym }}{% if not forloop.last %},{% endif %}
{% endifchanged %}
{% endfor %}
| |
|
|
|
|
{% for session in not_meeting_sessions %}
{% ifchanged session.group.acronym %}
{% if session.sessionpresentation_set.exists %}
{% include "meeting/group_proceedings.html" %}
{% endif %}
{% endifchanged %}
{% endfor %}
{% endif %}
{% endfor %}
{% if training %}
{% with "False" as show_agenda %}
Training
| Group |
Artifacts |
Recordings |
Slides |
Drafts |
{% for session in training %}
{% ifchanged %}
{% include "meeting/group_proceedings.html" %}
{% endifchanged %}
{% endfor %}
{% endwith %}
{% endif %}
{% if iab %}
IAB Internet Architecture Board
| Group |
Artifacts |
Recordings |
Slides |
Drafts |
{% for session in iab %}
{% ifchanged %}
{% include "meeting/group_proceedings.html" %}
{% endifchanged %}
{% endfor %}
{% endif %}
{% if irtf %}
IRTF Internet Research Task Force
| Group |
Artifacts |
Recordings |
Slides |
Drafts |
{% for session in irtf|dictsort:"group.acronym" %}
{% ifchanged %}
{% include "meeting/group_proceedings.html" %}
{% endifchanged %}
{% endfor %}
{% endif %}
{% endwith %}
{% endcache %}