forked from ietf-tools/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrecent_drafts.html
More file actions
24 lines (24 loc) · 847 Bytes
/
recent_drafts.html
File metadata and controls
24 lines (24 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin static %}
{% load cache %}
{% block pagehead %}
<link rel="stylesheet" href="{% static "ietf/css/list.css" %}">
{% endblock %}
{% block title %}Internet-Drafts submitted during the last {{ days|default:7 }} days{% endblock %}
{% block content %}
{% cache 1800 recentdrafts days using="slowpages" %}
{% origin %}
<h1>
Internet-Drafts submitted during the last {{ days|default:7 }} days
{% if pages %}
<br>
<small class="text-muted">{{ pages }} pages</small>
{% endif %}
</h1>
{% include "doc/search/search_results.html" with start_table=True end_table=True %}
{% endcache %}
{% endblock %}
{% block js %}
<script src="{% static "ietf/js/list.js" %}"></script>
{% endblock %}