22{# Copyright The IETF Trust 2015, All Rights Reserved #}
33{% load origin %}
44
5- {% load ietf_filters %}
5+ {% load ietf_filters staticfiles %}
66
77{% block pagehead %}
88 {% if last_call_only %}
99 < link rel ="alternate " type ="application/atom+xml " href ="/feed/last-call/ ">
1010 {% endif %}
11+ < link rel ="stylesheet " href ="{% static "jquery.tablesorter /css/theme.bootstrap.min.css" %}">
1112{% endblock %}
1213
1314{% block title %}{{ title }}{% endblock %}
1617 {% origin %}
1718 < h1 > {{ title }}</ h1 >
1819
19- < table class ="table table-condensed table-striped ">
20+ < table class ="table table-condensed table-striped tablesorter ">
2021 < thead >
2122 < tr >
2223 < th class ="text-nowrap "> Area</ th >
2324 < th class ="text-nowrap "> {% if state.slug == "lc" %}Expires at{% else %}Date{% endif %}</ th >
2425 < th > Document</ th >
26+ < th > Intended level</ th >
27+ < th > AD</ th >
2528 </ tr >
2629 </ thead >
27- < tbody >
2830 {% for state, docs in grouped_docs %}
29- < tr class ="info "> < th colspan ="3 "> {{ state.name }}</ th > </ tr >
30-
31+ < tbody >
32+ < tr class ="info "> < th colspan ="5 "> {{ state.name }}</ th > </ tr >
33+ </ tbody >
34+ < tbody >
3135 {% for doc in docs %}
3236 < tr >
3337 < td class ="text-nowrap "> {% if doc.area_acronym %}{{ doc.area_acronym }}{% endif %}</ td >
@@ -40,17 +44,22 @@ <h1>{{ title }}</h1>
4044 </ td >
4145
4246 < td >
43- < b > {{ doc.title }}</ b > ({{ doc.intended_std_level.name }})
44- < br > < a href ="{% url "doc_view " doc.name %}"> {{ doc.name }}</ a >
45- < br > AD: < a href ="mailto:{{ doc.ad.email_address|urlencode }} "> {{ doc.ad.plain_name }}</ a >
47+ < a href ="{% url "doc_view " doc.name %}"> {{ doc.name }}</ a >
48+ < br > < b > {{ doc.title }}</ b >
4649 {% if doc.note %}
4750 < br > < i > Note: {{ doc.note|linebreaksbr|urlize }}</ i >
4851 {% endif %}
4952 </ td >
53+ < td > {{ doc.intended_std_level.name }}</ td >
54+ < td > < a href ="mailto:{{ doc.ad.email_address|urlencode }} "> {{ doc.ad.plain_name }}</ a > </ td >
5055 </ tr >
5156 {% endfor %}
52- {% endfor %}
5357 </ tbody >
58+ {% endfor %}
5459 </ table >
5560
5661{% endblock %}
62+
63+ {% block js %}
64+ < script src ="{% static "jquery.tablesorter /js/jquery.tablesorter.combined.min.js" %}"> </ script >
65+ {% endblock %}
0 commit comments