https://datatables.net/ has way more features and better support, and bootstrap5 styling. - Legacy-Id: 19587
27 lines
622 B
HTML
27 lines
622 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin static %}
|
|
|
|
{% block pagehead %}
|
|
<link rel="stylesheet" href="{% static "ietf/css/datatables.css" %}">
|
|
{% endblock %}
|
|
|
|
{% block title %}Internet-Drafts in IETF last call{% endblock %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>
|
|
Internet-Drafts in IETF last call
|
|
{% if pages %}
|
|
<small class="padded-left">{{ pages }} pages</small>
|
|
{% endif %}
|
|
</h1>
|
|
|
|
{% include "doc/search/search_results.html" %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block js %}
|
|
<script src="{% static "ietf/js/datatables.js" %}"></script>
|
|
{% endblock %}
|