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
29 lines
772 B
HTML
29 lines
772 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
|
|
{% load ietf_filters staticfiles %}
|
|
|
|
{% block pagehead %}
|
|
<link rel="stylesheet" href="{% static "jquery.tablesorter/css/theme.bootstrap.min.css" %}">
|
|
{% endblock %}
|
|
|
|
{% block title %}{{ stream }} stream documents{% endblock %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>{{ stream }} stream documents</h1>
|
|
|
|
{% if editable %}
|
|
<p>
|
|
<a class="btn btn-default" href="{% url "ietf.group.views_stream.stream_edit" stream.slug %}">Assign delegates</a>
|
|
</p>
|
|
{% endif %}
|
|
|
|
{% include "doc/search/search_results.html" %}
|
|
{% endblock %}
|
|
|
|
{% block js %}
|
|
<script src="{% static "jquery.tablesorter/js/jquery.tablesorter.combined.min.js" %}"></script>
|
|
{% endblock %}
|