11 lines
437 B
Plaintext
11 lines
437 B
Plaintext
{% load ietf_filters %}
|
|
IETF Working Group Summary (By Acronym)
|
|
|
|
|
|
The following Area Abbreviations are used in this document
|
|
{% for area in area_list %}
|
|
{{ area|upper }} - {{ area.area_acronym.name }}{% endfor %}
|
|
{% for wg in wg_list|dictsort:"group_acronym.acronym" %}{% if wg.start_date %}
|
|
{{ wg.group_acronym.name|safe }} ({{ wg }}) -- {{ wg.area.area|upper }}
|
|
{% include "wginfo/wg_summary.txt" %}{% endif %}{% endfor %}
|