forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex_active_drafts.html
More file actions
41 lines (36 loc) · 1.36 KB
/
index_active_drafts.html
File metadata and controls
41 lines (36 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{% 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 %}
<h1>Active Internet-Drafts</h1>
<p>This page lists all active Internet-Drafts, grouped by responsible
group. For normal use, it is recommended to use the
<a href="{% url 'ietf.doc.views_search.search' %}">search page</a>.</p>
<p>There is also an <a href="{% url 'ietf.doc.views_search.index_all_drafts' %}">index of all
Internet-Drafts</a> (that page also lists some machine-readable files
for download).</p>
<p class="buttonlist">
{% for group in groups %}
<a class="btn btn-default btn-xs" href="#{{ group.acronym }}">{{ group.acronym }}</a>
{% endfor %}
</p>
{% for group in groups %}
<h2 class="anchor-target" id="{{ group.acronym }}">{{ group.name }} ({{ group.acronym }})</h2>
{% for d in group.active_drafts %}
<p>
<b>{{ d.title }}.</b><br>
{% for a in d.authors %}
{{ a }}{% if not forloop.last %}, {% else %}.{% endif %}
{% endfor %}
<br><a href="/doc/{{ d.name }}/">{{ d.name }}-{{ d.rev }}</a>
<br>{{ d.rev_time|date:"Y-m-d" }}
</p>
{% endfor %}
{% endfor %}
{% endcache %}
{% endblock %}