datatracker/ietf/templates/doc/drafts_in_last_call.html
Lars Eggert 9d5d9d5172
fix: replace deprecated bootstrap things (#5858)
* text-muted -> text-body-secondary

* navbar-dark is deprecated

* Remove FIXME block, not an issue anymore

* Remove `navbar-light`
2023-07-18 12:22:28 -05:00

21 lines
699 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/list.css" %}">
{% endblock %}
{% block title %}Internet-Drafts in IETF Last Call{% endblock %}
{% block content %}
{% origin %}
<h1>
Internet-Drafts in IETF Last Call
{% if pages %}
<br>
<small class="text-body-secondary">{{ pages }} pages</small>
{% endif %}
</h1>
{% include "doc/search/search_results.html" with start_table=True end_table=True %}
{% endblock %}
{% block js %}
<script src="{% static "ietf/js/list.js" %}"></script>
{% endblock %}