{% extends "base.html" %} {# Copyright The IETF Trust 2015, All Rights Reserved #} {% load origin %} {% load static %} {% load cache %} {% block title %}Active Internet-Drafts{% endblock %} {% block content %} {% cache 900 ietf_doc_index_active_drafts %} {% origin %}

Active Internet-Drafts

This page lists all active Internet-Drafts, grouped by responsible group. For normal use, it is recommended to use the search page.

There is also an index of all Internet-Drafts (that page also lists some machine-readable files for download).

{% for group in groups %} {{ group.acronym }} {% endfor %}

{% for group in groups %}

{{ group.name }} ({{ group.acronym }})

{% for d in group.active_drafts %}

{{ d.title }}.
{% for a in d.authors %} {{ a }}{% if not forloop.last %}, {% else %}.{% endif %} {% endfor %}
{{ d.name }}-{{ d.rev }}
{{ d.rev_time|date:"Y-m-d" }}

{% endfor %} {% endfor %} {% endcache %} {% endblock %}