Use js tablesort almost everywhere I thought it would make sense. While I
touched the pages, I also corrected a few minor HTML nits, capitalization
inconsistencies and some other minor things.
Range r10605:r10621
- Legacy-Id: 10647
Note: SVN reference [10621] has been migrated to Git commit 7d3c2681e2
43 lines
1.1 KiB
HTML
43 lines
1.1 KiB
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin staticfiles %}
|
|
|
|
{% load ietf_filters %}
|
|
|
|
{% block pagehead %}
|
|
<link rel="stylesheet" href="{% static "jquery.tablesorter/css/theme.bootstrap.min.css" %}">
|
|
{% endblock %}
|
|
|
|
{% block title %}Other RFC streams{% endblock %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>Other RFC streams</h1>
|
|
|
|
<table class="table table-condensed table-striped tablesorter">
|
|
<thead>
|
|
<th>Stream</th>
|
|
<th>Owner</th>
|
|
<th>Stream manager</th>
|
|
</thead>
|
|
|
|
<tbody>
|
|
{% for stream in streams %}
|
|
<tr>
|
|
<td class="text-nowrap"><a href="/stream/{{stream.acronym}}/">{{ stream.acronym }}</a></td>
|
|
<td>{{ stream.name }}</td>
|
|
<td>
|
|
{% with stream.get_chair as role %}
|
|
<a href="mailto:{{role.person.email_address}}">{{role.person}}</a>
|
|
({{role.name}})
|
|
{% endwith %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endblock %}
|
|
|
|
{% block js %}
|
|
<script src="{% static "jquery.tablesorter/js/jquery.tablesorter.combined.min.js" %}"></script>
|
|
{% endblock %} |