datatracker/ietf/templates/doc/recent_drafts.html
2018-05-01 17:55:22 +00:00

27 lines
749 B
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin staticfiles %}
{% block pagehead %}
<link rel="stylesheet" href="{% static "jquery.tablesorter/css/theme.bootstrap.min.css" %}">
{% endblock %}
{% block title %}Internet-Drafts submitted during the last {{days|default:7}} days{% endblock %}
{% block content %}
{% origin %}
<h1>
Internet-Drafts submitted during the last {{days|default:7}} days
{% if pages %}
<small class="padded-left">{{ pages }} pages</small>
{% endif %}
</h1>
{% include "doc/search/search_results.html" %}
{% endblock %}
{% block js %}
<script src="{% static "jquery.tablesorter/js/jquery.tablesorter.combined.min.js" %}"></script>
{% endblock %}