Skip to content

Commit 27fdcd7

Browse files
committed
Added column sorting to the private nomcom nominee table.
- Legacy-Id: 15505
1 parent 43dd7d5 commit 27fdcd7

1 file changed

Lines changed: 11 additions & 2 deletions

File tree

ietf/templates/nomcom/private_index.html

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
{% extends "nomcom/nomcom_private_base.html" %}
22
{# Copyright The IETF Trust 2015, All Rights Reserved #}
3-
{% load origin %}
3+
{% load origin static %}
44

55
{% block subtitle %} - Administration {% endblock %}
66

7+
{% block pagehead %}
8+
<link rel="stylesheet" href="{% static "jquery.tablesorter/css/theme.bootstrap.min.css" %}">
9+
{% endblock %}
10+
711
{% block nomcom_content %}
812
{% origin %}
913
<h2>Nomination status</h2>
@@ -111,7 +115,8 @@ <h2>Nominees by position</h2>
111115
<form class="form-inline" id="batch-action-form" method="post">{% csrf_token %}
112116
{% endif %}
113117

114-
<table class="table table-condensed table-striped table-hover">
118+
119+
<table class="table table-condensed table-striped table-hover tablesorter">
115120
<thead>
116121
<tr>
117122
{% if is_chair and nomcom.group.state_id == 'active' %}<th colspan="2"><span class="fa fa-check"></span></th>{% endif %}
@@ -161,3 +166,7 @@ <h2>Nominees by position</h2>
161166
</div>
162167

163168
{% endblock %}
169+
170+
{% block js %}
171+
<script src="{% static "jquery.tablesorter/js/jquery.tablesorter.combined.min.js" %}"></script>
172+
{% endblock %}

0 commit comments

Comments
 (0)