Adding page count to last call page.
- Legacy-Id: 14907
Note: SVN reference [14884] has been migrated to Git commit e7b984dfa7
27 lines
685 B
HTML
27 lines
685 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 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 "jquery.tablesorter/js/jquery.tablesorter.combined.min.js" %}"></script>
|
|
{% endblock %}
|