Added column sorting to the private nomcom nominee table.
- Legacy-Id: 15505
This commit is contained in:
parent
43dd7d5e90
commit
27fdcd7c6d
|
@ -1,9 +1,13 @@
|
|||
{% extends "nomcom/nomcom_private_base.html" %}
|
||||
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
||||
{% load origin %}
|
||||
{% load origin static %}
|
||||
|
||||
{% block subtitle %} - Administration {% endblock %}
|
||||
|
||||
{% block pagehead %}
|
||||
<link rel="stylesheet" href="{% static "jquery.tablesorter/css/theme.bootstrap.min.css" %}">
|
||||
{% endblock %}
|
||||
|
||||
{% block nomcom_content %}
|
||||
{% origin %}
|
||||
<h2>Nomination status</h2>
|
||||
|
@ -111,7 +115,8 @@
|
|||
<form class="form-inline" id="batch-action-form" method="post">{% csrf_token %}
|
||||
{% endif %}
|
||||
|
||||
<table class="table table-condensed table-striped table-hover">
|
||||
|
||||
<table class="table table-condensed table-striped table-hover tablesorter">
|
||||
<thead>
|
||||
<tr>
|
||||
{% if is_chair and nomcom.group.state_id == 'active' %}<th colspan="2"><span class="fa fa-check"></span></th>{% endif %}
|
||||
|
@ -161,3 +166,7 @@
|
|||
</div>
|
||||
|
||||
{% endblock %}
|
||||
|
||||
{% block js %}
|
||||
<script src="{% static "jquery.tablesorter/js/jquery.tablesorter.combined.min.js" %}"></script>
|
||||
{% endblock %}
|
||||
|
|
Loading…
Reference in a new issue