{% extends "base.html" %} {# Copyright The IETF Trust 2015-2021, All Rights Reserved #} {% load origin static %} {% block pagehead %} {% endblock %} {% block morecss %} .fixed { position: fixed; } .bs-docs-sidebar .nav .nav>li>a { padding-left: 20px; } .bs-docs-sidebar .nav ul.nav { display: none; } .bs-docs-sidebar .nav>.active>ul.nav { display: block; } {% endblock %} {% block bodyAttrs %}data-spy="scroll" data-target="#navscroller"{% endblock %} {% block title %}Concluded groups{% endblock %} {% block content %} {% origin %}

Concluded groups

Note that the information on historical groups may be inaccurate.

{% for label, groups in sections.items %}
{{label}}
{% if label == "WGs" %} {% comment "Replace this if that tools page is moved" %}

Some additional concluded WGs may be present here.

{% endcomment %} {% elif label == "RGs" %}

The information below is incomplete and misses a few older RGs. Please check the IRTF site for more complete information.

{% endif %} {% if not groups %}

No groups found.

{% else %} {% regroup groups by parent as grouped_by_areas %} {% for area_grouping in grouped_by_areas %}
{{area_grouping.grouper.name|default:'Unknown area'}}
{% for g in area_grouping.list %} {% endfor %}
Group Name Start Concluded
{{ g.acronym }} {{ g.name }} {{ g.start_date|date:"Y-m" }} {{ g.conclude_date|date:"Y-m" }}
{% endfor %} {% endif %}
{% endfor %}
{% endblock %} {% block js %} {% endblock %}