page in views_search to share code with the text index file, get rid of some special-case idindex filters from ietf_filters, move "/drafts/" redirects to a file in /doc/ - Legacy-Id: 5634
13 lines
721 B
Plaintext
13 lines
721 B
Plaintext
{% autoescape off %}{% load ietf_filters %} Current Internet-Drafts
|
|
This summary sheet provides an index of each Internet-Draft. These
|
|
drafts are listed alphabetically by Working Group acronym and initial
|
|
post date. Generated {{ time }}.
|
|
|
|
{% for group in groups %}
|
|
{% filter underline %}{{ group.name }} ({{ group.acronym }}){% endfilter %}
|
|
{% for d in group.active_drafts %}
|
|
{% filter wordwrap:72|indent:2 %}"{{ d.title|clean_whitespace }}", {% for a in d.authors %}{{ a }}, {% endfor %}{{ d.rev_time|date:"Y-m-d"}}, <{{ d.name }}-{{ d.rev }}{{ d.exts }}>
|
|
{% endfilter %}{% if with_abstracts %}
|
|
|
|
{{ d.abstract.strip|unindent|fill:72|indent:6 }}{% endif %}{% endfor %}{% endfor %}{% endautoescape %}
|