Use jquery tablesorter to change the ordering of document search tables
- Legacy-Id: 10644
Note: SVN reference [10614] has been migrated to Git commit e920d0bbd9
22 lines
583 B
HTML
22 lines
583 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</h1>
|
|
|
|
{% include "doc/search/search_results.html" %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block js %}
|
|
<script src="{% static "jquery.tablesorter/js/jquery.tablesorter.combined.min.js" %}"></script>
|
|
{% endblock %}
|