Skip to content

Commit ab8590e

Browse files
committed
Merged in [13934] from kivinen@iki.fi:
Added sorting for the review team statistics tables. Fixed ietf-tools#2330. - Legacy-Id: 13959 Note: SVN reference [13934] has been migrated to Git commit 249c345
2 parents eac8b42 + 249c345 commit ab8590e

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

ietf/templates/stats/review_stats.html

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
{% load ietf_filters staticfiles bootstrap3 %}
66

77
{% block pagehead %}
8+
<link rel="stylesheet" href="{% static "jquery.tablesorter/css/theme.bootstrap.min.css" %}">
89
<link rel="stylesheet" href="{% static 'bootstrap-datepicker/css/bootstrap-datepicker3.min.css' %}">
910
{% endblock %}
1011

@@ -109,7 +110,7 @@ <h1>
109110

110111
<h3>Completion status and completion time</h3>
111112

112-
<table class="review-stats table">
113+
<table class="review-stats table tablesorter">
113114
<thead>
114115
<th>
115116
{% if level == "team" %}
@@ -148,7 +149,7 @@ <h3>Completion status and completion time</h3>
148149

149150
<h3>Results of completed reviews</h3>
150151

151-
<table class="review-stats table">
152+
<table class="review-stats table tablesorter">
152153
<thead>
153154
<th>
154155
{% if level == "team" %}
@@ -177,7 +178,7 @@ <h3>Results of completed reviews</h3>
177178

178179
<h3>Specific request states</h3>
179180

180-
<table class="review-stats table">
181+
<table class="review-stats table tablesorter">
181182
<thead>
182183
<th>
183184
{% if level == "team" %}
@@ -251,6 +252,7 @@ <h3>Counts per month</h3>
251252
{% endblock %}
252253

253254
{% block js %}
255+
<script src="{% static "jquery.tablesorter/js/jquery.tablesorter.combined.min.js" %}"></script>
254256
<script src="{% static 'bootstrap-datepicker/js/bootstrap-datepicker.min.js' %}"></script>
255257
{% if stats_type == "time" %}
256258
<script src="{% static 'flot/jquery.flot.min.js' %}"></script>

0 commit comments

Comments
 (0)