Skip to content

Commit 39d500d

Browse files
committed
tablesorter -> datatables
https://datatables.net/ has way more features and better support, and bootstrap5 styling. - Legacy-Id: 19587
1 parent df25650 commit 39d500d

73 files changed

Lines changed: 146 additions & 152 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

ietf/templates/base.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@
131131
<script src="{% static 'ietf/js/ietf.js' %}"></script>
132132
{% block js %}{% endblock %}
133133
{% if debug %}
134-
<script src="{% static 'jquery.tablesorter/js/jquery.tablesorter.combined.min.js' %}"></script>
134+
<script src="{% static 'ietf/js/datatables.js' %}"></script>
135135
{% endif %}
136136
</body>
137137

ietf/templates/doc/document_email.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
{% load static %}
66

77
{% block pagehead %}
8-
<link rel="stylesheet" href="{% static "jquery.tablesorter/css/theme.bootstrap.min.css" %}">
8+
<link rel="stylesheet" href="{% static "ietf/css/datatables.css" %}">
99
{% endblock %}
1010

1111
{% block title %}Email expansions for {{ doc.name }}-{{ doc.rev }}{% endblock %}
@@ -61,5 +61,5 @@ <h2>Recipient expansions</h2>
6161
{% endblock content %}
6262

6363
{% block js %}
64-
<script src="{% static "jquery.tablesorter/js/jquery.tablesorter.combined.min.js" %}"></script>
64+
<script src="{% static "ietf/js/datatables.js" %}"></script>
6565
{% endblock %}

ietf/templates/doc/document_history.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
{% block pagehead %}
1414
<link rel="alternate" type="application/atom+xml" href="/feed/document-changes/{{ doc.name }}/" />
15-
<link rel="stylesheet" href="{% static "jquery.tablesorter/css/theme.bootstrap.min.css" %}">
15+
<link rel="stylesheet" href="{% static "ietf/css/datatables.css" %}">
1616
{% endblock %}
1717

1818
{% block content %}
@@ -123,5 +123,5 @@ <h2>Document history</h2>
123123
{% endblock content %}
124124

125125
{% block js %}
126-
<script src="{% static "jquery.tablesorter/js/jquery.tablesorter.combined.min.js" %}"></script>
126+
<script src="{% static "ietf/js/datatables.js" %}"></script>
127127
{% endblock %}

ietf/templates/doc/document_referenced_by.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{% load origin static ietf_filters %}
44

55
{% block pagehead %}
6-
<link rel="stylesheet" href="{% static "jquery.tablesorter/css/theme.bootstrap.min.css" %}">
6+
<link rel="stylesheet" href="{% static "ietf/css/datatables.css" %}">
77
{% endblock %}
88

99
{% block title %}
@@ -71,5 +71,5 @@ <h1>References to {{alias_name}}</h1>
7171
{% endblock %}
7272

7373
{% block js %}
74-
<script src="{% static "jquery.tablesorter/js/jquery.tablesorter.combined.min.js" %}"></script>
74+
<script src="{% static "ietf/js/datatables.js" %}"></script>
7575
{% endblock %}

ietf/templates/doc/document_references.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{% load origin static ietf_filters %}
44

55
{% block pagehead %}
6-
<link rel="stylesheet" href="{% static "jquery.tablesorter/css/theme.bootstrap.min.css" %}">
6+
<link rel="stylesheet" href="{% static "ietf/css/datatables.css" %}">
77
{% endblock %}
88

99
{% block title %}
@@ -58,5 +58,5 @@ <h1>References from {{doc.canonical_name}}</h1>
5858
{% endblock %}
5959

6060
{% block js %}
61-
<script src="{% static "jquery.tablesorter/js/jquery.tablesorter.combined.min.js" %}"></script>
61+
<script src="{% static "ietf/js/datatables.js" %}"></script>
6262
{% endblock %}

ietf/templates/doc/downref.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
{% load ietf_filters static %}
77

88
{% block pagehead %}
9-
<link rel="stylesheet" href="{% static "jquery.tablesorter/css/theme.bootstrap.min.css" %}">
9+
<link rel="stylesheet" href="{% static "ietf/css/datatables.css" %}">
1010
{% endblock %}
1111

1212
{% block title %}{{ title }}{% endblock %}
@@ -48,5 +48,5 @@ <h1>{{ title }}</h1>
4848
{% endblock %}
4949

5050
{% block js %}
51-
<script src="{% static "jquery.tablesorter/js/jquery.tablesorter.combined.min.js" %}"></script>
51+
<script src="{% static "ietf/js/datatables.js" %}"></script>
5252
{% endblock %}

ietf/templates/doc/drafts_for_ad.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
{% load ietf_filters %}
55

66
{% block pagehead %}
7-
<link rel="stylesheet" href="{% static "jquery.tablesorter/css/theme.bootstrap.min.css" %}">
7+
<link rel="stylesheet" href="{% static "ietf/css/datatables.css" %}">
88
{% endblock %}
99

1010
{% block title %}Documents for {{ ad_name }}{% endblock %}
@@ -55,5 +55,5 @@ <h1>Documents for {{ ad_name }}</h1>
5555
{% endblock %}
5656

5757
{% block js %}
58-
<script src="{% static "jquery.tablesorter/js/jquery.tablesorter.combined.min.js" %}"></script>
58+
<script src="{% static "ietf/js/datatables.js" %}"></script>
5959
{% endblock %}

ietf/templates/doc/drafts_in_iesg_process.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
{% load textfilters person_filters %}
66

77
{% block pagehead %}
8-
<link rel="stylesheet" href="{% static "jquery.tablesorter/css/theme.bootstrap.min.css" %}">
8+
<link rel="stylesheet" href="{% static "ietf/css/datatables.css" %}">
99
{% endblock %}
1010

1111
{% block title %}{{ title }}{% endblock %}
@@ -64,5 +64,5 @@ <h1>{{ title }}</h1>
6464
{% endblock %}
6565

6666
{% block js %}
67-
<script src="{% static "jquery.tablesorter/js/jquery.tablesorter.combined.min.js" %}"></script>
67+
<script src="{% static "ietf/js/datatables.js" %}"></script>
6868
{% endblock %}

ietf/templates/doc/drafts_in_last_call.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{% load origin static %}
44

55
{% block pagehead %}
6-
<link rel="stylesheet" href="{% static "jquery.tablesorter/css/theme.bootstrap.min.css" %}">
6+
<link rel="stylesheet" href="{% static "ietf/css/datatables.css" %}">
77
{% endblock %}
88

99
{% block title %}Internet-Drafts in IETF last call{% endblock %}
@@ -22,5 +22,5 @@ <h1>
2222
{% endblock %}
2323

2424
{% block js %}
25-
<script src="{% static "jquery.tablesorter/js/jquery.tablesorter.combined.min.js" %}"></script>
25+
<script src="{% static "ietf/js/datatables.js" %}"></script>
2626
{% endblock %}

ietf/templates/doc/irsg_ballot_status.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
{% load ietf_filters %}
77

88
{% block pagehead %}
9-
<link rel="stylesheet" href="{% static "jquery.tablesorter/css/theme.bootstrap.min.css" %}">
9+
<link rel="stylesheet" href="{% static "ietf/css/datatables.css" %}">
1010
{% endblock %}
1111

1212
{% block title %}IRSG ballot status{% endblock %}
@@ -37,6 +37,6 @@ <h1>IRSG ballot status</h1>
3737
{% endblock %}
3838

3939
{% block js %}
40-
<script src="{% static "jquery.tablesorter/js/jquery.tablesorter.combined.min.js" %}"></script>
40+
<script src="{% static "ietf/js/datatables.js" %}"></script>
4141
{% endblock %}
4242

0 commit comments

Comments
 (0)