{% extends "group/group_base.html" %} {# Copyright The IETF Trust 2015, All Rights Reserved #} {% load origin %} {% 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 buttonlist %} {% block group_content %} {% origin %} {% if in_progress %}
Meetings in progress
{% with sessions=in_progress show_request=True show_ical=True can_edit_materials=can_edit %} {% include "group/meetings-row.html" %} {% endwith %}
{% endif %} {% if future %}
Future Meetings
{% 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
{% 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 %}
This page shows meetings within the last four years. For earlier meetings, please see the proceedings.
{% endblock %}