{% extends "group/group_base.html" %}
{% load origin static %}
{% block title %}
Meetings
{% if group %}for {{ group.acronym }}{% endif %}
{% endblock %}
{% block buttonlist %}
{{ block.super }}
Session requests
{% if can_edit or can_always_edit %}
Request a session
Request an interim meeting
{% endif %}
{% endblock %}
{% block group_content %}
{% origin %}
{% include "meeting/tz-display.html" with meeting_timezone=None id_suffix="" minimal=False only %}
{% if in_progress %}
Meetings in progress
{% with sessions=in_progress show_request=True show_ical=True can_edit_materials=can_edit %}
Meeting |
Date |
|
Materials |
{% include "group/meetings-row.html" %}
{% endwith %}
{% endif %}
{% if future %}
Future Meetings
Meeting |
Date |
|
Materials |
{% with sessions=future show_request=True show_ical=True can_edit_materials=can_edit %}
{% include "group/meetings-row.html" %}
{% endwith %}
{% endif %}
{% if past or recent %}
Past Meetings (within the last four years)
Meeting |
Date |
|
Materials |
{% with sessions=recent can_edit_materials=can_edit %}
{% include "group/meetings-row.html" %}
{% endwith %}
{% with sessions=past can_edit_materials=False %}
{% include "group/meetings-row.html" %}
{% endwith %}
{% endif %}
{# The following is a temporary performance workaround, not long term design #}
{% if group.acronym != "iab" and group.acronym != "iesg" %}
This page shows meetings within the last four years. For earlier meetings, please see the
proceedings.
{% else %}
{% comment %}
Note: This block is only capable of correctly processing interim sessions.
If the view starts sending other types of meetings with a non-empty
older_sessions value, this block will need to be adjusted.
{% endcomment %}
{% if far_past %}
Meetings more than four years ago
Meeting |
Date |
|
Materials |
{% for s in far_past %}
{% if s.meeting.type.slug == 'ietf' %}
IETF {{ s.meeting.number }}
{% else %}
{{ s.meeting.number }}
{% endif %} |
{% if s.current_status == "sched" %}
{{ s.time|date:"Y-m-d" }}
{% else %}
{{ s.current_status_name }}
{% endif %}
|
{% if s.name %}{{ s.name }}{% endif %}
|
{% if s.current_status == "sched" %}{{ s.time|date:"D" }}{% endif %}
|
{% if not s.canceled %}
Agenda
Minutes
{% if group.acronym == "iesg" %}
Narrative Minutes
{% endif %}
{% if can_always_edit or can_edit_materials %}
{% endif %}
Materials
{% endif %}
|
{% endfor %}
{% endif %}
{% endif %}
{% endblock %}
{% block js %}
{% endblock %}