datatracker/ietf/templates/doc/recent_drafts.html
Lars Eggert bbf088e18b Hopefully the final check-ins.
- Legacy-Id: 19909
2022-02-08 17:29:15 +00:00

24 lines
847 B
HTML

{% 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 %}