forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhistory.html
More file actions
811 lines (779 loc) · 22.2 KB
/
history.html
File metadata and controls
811 lines (779 loc) · 22.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
{% extends "base.html" %}
{# Copyright The IETF Trust 2015-2020, All Rights Reserved #}
{% load origin %}
{% load ietf_filters static %}
{% load group_filters %}
{% block pagehead %}
<link rel="stylesheet" href="{% static "jquery.tablesorter/css/theme.bootstrap.min.css" %}">
{% endblock %}
{% block bodyAttrs %}data-spy="scroll" data-target="#affix"{% endblock %}
{% block title %}NomCom{% endblock %}
{% block content %}
{% origin %}
<div class="row">
<div class="col-md-10">
<h1>NomCom Membership History</h1>
<p class="alert alert-warning"><b>Note:</b> The data for concluded NomComs is occasionally incorrect.</p>
{% for regime in regimes %}
<table class="table table-condensed">
<tbody class="meta">
<h3 class="anchor-target" id="{{ regime.year }}">{{ regime.label }}</h3>
{% for slug, label, roles in regime.nomcom.personnel %}
<tr>
<th></th>
<th>{{ label }}</th>
<td>
{% for r in roles %}
{% role_person_link r %}
<br />
{% endfor %}
</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endfor %}
<a href="prior"></a>
<table class="table table-condensed">
<tbody class="meta">
<h3 class="anchor-target" id="2012">2012/2013</h3>
<tr><th></th>
<th>Chair</th>
<td>Matt Lepinski<br /></td>
</tr>
<tr><th></th>
<th>Advisor</th>
<td>Suresh Krishnan<br /></td>
</tr>
<tr><th></th>
<th>Members</th>
<td>Dhruv Dhody<br />
Yi (Aaron) Ding<br />
Toerless Eckert<br />
Jeff Haas<br />
David Meyer<br />
Michael Richardson<br />
Teemu Savolainen<br />
Karen Seo<br />
Steven White<br />
Leaf Yeh<br />
</td>
</tr>
<tr><th></th>
<th>Liaison Members</th>
<td>Marc Blanchet (IAB Liaison)<br />
Scott Bradner (IAOC Liaison)<br />
Sean Turner (IESG Liaison)<br />
Rudi Vansnick (ISOC Liaison)<br />
</td>
</tr>
</tbody>
</table>
<table class="table table-condensed">
<tbody class="meta">
<h3 class="anchor-target" id="2011">2011/2012</h3>
<tr><th></th>
<th>Chair</th>
<td>Suresh Krishnan<br /></td>
</tr>
<tr><th></th>
<th>Advisors</th>
<td>Tom Walsh<br />
Henrik Levkowetz (Tools Advisor)<br />
</td>
</tr>
<tr><th></th>
<th>Members</th>
<td>Jaap Akkerhuis<br />
Stephen Hanna<br />
Sheng Jiang<br />
Dapeng Liu<br />
Rifaat Shekh-Yuse<br />
Pascal Thubert<br />
Olivier Vautrin<br />
Simo Veikkolainen<br />
Ijsbrand Wijnands<br />
Lianshu Zheng<br />
</td>
</tr>
<tr><th></th>
<th>Liaison Members</th>
<td>Dave Thaler (IAB Liaison)<br />
Dave Crocker (IAOC Liaison)<br />
Ralph Droms (IESG Liaison)<br />
Jason Livingood (ISOC Liaison)<br />
</td>
</tr>
</tbody>
</table>
<table class="table table-condensed">
<tbody class="meta">
<h3 class="anchor-target" id="2010">2010/2011</h3>
<tr><th></th>
<th>Chair</th>
<td>Tom Walsh<br /></td>
</tr>
<tr><th></th>
<th>Advisors</th>
<td>Mary Barnes<br />
Henrik Levkowetz (Tools Advisor)<br />
</td>
</tr>
<tr><th></th>
<th>Members</th>
<td>Gregory Cauchie<br />
Mehmet Ersue<br />
Dorothy Gellert<br />
Tony Hansen<br />
Suresh Krishnan<br />
Dirk Kroeselberg<br />
Jan Seedorf<br />
Pete St. Pierre<br />
Rolf Winter<br />
</td>
</tr>
<tr><th></th>
<th>Liaison Members</th>
<td>Spencer Dawkins (IAB Liaison)<br />
Ole Jacobsen (IAOC Liaison)<br />
Dan Romascanu (IESG Liaison)<br />
Eric Burger (ISOC Liaison)<br />
</td>
</tr>
</tbody>
</table>
<table class="table table-condensed">
<tbody class="meta">
<h3 class="anchor-target" id="2009">2009/2010</h3>
<tr><th></th>
<th>Chair</th>
<td>Mary Barnes<br /></td>
</tr>
<tr><th></th>
<th>Advisors</th>
<td>Joel Halpern<br />
Henrik Levkowetz (Tools Advisor)<br />
</td>
</tr>
<tr><th></th>
<th>Members</th>
<td>Scott Brim<br />
David H. Crocker<br />
Roque Gagliano<br />
Randall Gellens<br />
Dorothy Gellert<br />
Wassim Haddad<br />
Stephen Kent<br />
Simo Veikkolainen<br />
Dimitri Papadimitriou<br />
Lucy Yong<br />
</td>
</tr>
<tr><th></th>
<th>Liaison Members</th>
<td>Jon Peterson (IAB Liaison)<br />
Tim Polk (IESG Liaison)<br />
Henk Uijterwall (IAOC liaison)<br />
TBA (ISOC Liaison)<br />
</td>
</tr>
</tbody>
</table>
<table class="table table-condensed">
<tbody class="meta">
<h3 class="anchor-target" id="2008">2008/2009</h3>
<tr><th></th>
<th>Chair</th>
<td>Joel Halpern<br /></td>
</tr>
<tr><th></th>
<th>Advisor</th>
<td>Lakshminath Dondeti<br />
</td>
</tr>
<tr><th></th>
<th>Members</th>
<td>Bernard Aboba<br />
Stephen Hanna<br />
Sam Hartman<br />
Bernie Hoeneisen<br />
Markus Isomaki<br />
Matt Lepinski<br />
Jason Livingood<br />
Hannes Tschofenig<br />
Russ White<br />
Margaret Wasserman<br />
</td>
</tr>
<tr><th></th>
<th>Liaison Members</th>
<td>Dave Oran (IAB Liaison)<br />
Ross Callon (IESG Liaison)<br />
Bert Wijnen (ISOC Liaison)<br />
</td>
</tr>
</tbody>
</table>
<table class="table table-condensed">
<tbody class="meta">
<h3 class="anchor-target" id="2007">2007/2008</h3>
<tr><th></th>
<th>Chair</th>
<td>Lakshminath Dondeti<br /></td>
</tr>
<tr><th></th>
<th>Advisor</th>
<td>Andrew Lange<br />
</td>
</tr>
<tr><th></th>
<th>Members</th>
<td>Simon Leinen<br />
Christopher Boulton<br />
Dan Wing<br />
Derek Atkins<br />
Steven Blake<br />
Ian Chakeres<br />
Thomas Walsh<br />
Attila Takacs<br />
Ole Jacobsen<br />
Craig White<br />
</td>
</tr>
<tr><th></th>
<th>Liaison Members</th>
<td>Danny McPherson (IAB Liaison)<br />
Lars Eggert (IESG Liaison)<br />
Fred Baker (ISOC Liaison)<br />
</td>
</tr>
</tbody>
</table>
<table class="table table-condensed">
<tbody class="meta">
<h3 class="anchor-target" id="2006">2006/2007</h3>
<tr><th></th>
<th>Chair</th>
<td>Andrew Lange<br /></td>
</tr>
<tr><th></th>
<th>Advisor</th>
<td>Ralph Droms (Previous Chair)<br />
</td>
</tr>
<tr><th></th>
<th>Members</th>
<td>Cengiz Alaettinoglu<br />
Dan Li<br />
Brian Haberman<br />
John Drake<br />
Stephen Kent<br />
Vidya Narayanan<br />
Hao Zhou<br />
Kurt Zeilenga<br />
Martin Stiemerling<br />
Juergen Quittek<br />
</td>
</tr>
<tr><th></th>
<th>Liaison Members</th>
<td>Olaf Kolkman (IAB Liaison)<br />
Cullen Jennings (IESG Liaison)<br />
Fred Baker (ISOC Liaison)<br />
</td>
</tr>
</tbody>
</table>
<table class="table table-condensed">
<tbody class="meta">
<h3 class="anchor-target" id="2005">2005/2006</h3>
<tr><th></th>
<th>Chair</th>
<td>Ralph Droms<br /></td>
</tr>
<tr><th></th>
<th>Advisor</th>
<td>Danny McPherson (Previous Chair)<br />
</td>
</tr>
<tr><th></th>
<th>Members</th>
<td>Sam Weiler<br />
Lakshminath Dondeti<br />
Stewart Bryant<br />
Alan Hawrylyshen<br />
Wassim Haddad<br />
Joao Luis Silva Damas<br />
Dinesh Mohan<br />
Ron Bonica<br />
Jozef Babiarz<br />
Vijay K. Gurbani<br />
</td>
</tr>
<tr><th></th>
<th>Liaison Members</th>
<td>David Meyer (IAB Liaison)<br />
Russ Housley (IESG Liaison)<br />
Steve Crocker (ISOC Liaison)<br />
</td>
</tr>
</tbody>
</table>
<table class="table table-condensed">
<tbody class="meta">
<h3 class="anchor-target" id="2004">2004/2005</h3>
<tr><th></th>
<th>Chair</th>
<td>Danny McPherson<br /></td>
</tr>
<tr><th></th>
<th>Advisor</th>
<td>Richard Draves (Previous Chair)<br />
</td>
</tr>
<tr><th></th>
<th>Members</th>
<td>Alia Atlas<br />
Stewart Bryant<br />
Lakshminath Dondeti<br />
Markus Isomaki<br />
Andrew Lange<br />
Matt Larson<br />
Chris Liljenstolpe<br />
Magnus Westerlund<br />
Russ White<br />
Juha Wiljakka<br />
</td>
</tr>
<tr><th></th>
<th>Liaison Members</th>
<td>Eric Rescorla (IAB Liaison)<br />
Alex Zinin (IESG Liaison)<br />
Steve Crocker (ISOC Liaison)<br />
Richard Draves (Previous Chair/Advisor)<br />
</td>
</tr>
</tbody>
</table>
<table class="table table-condensed">
<tbody class="meta">
<h3 class="anchor-target" id="2003">2003/2004</h3>
<tr><th></th>
<th>Chair</th>
<td>Rich Draves<br /></td>
</tr>
<tr><th></th>
<th>Advisor</th>
<td>Phil Roberts (Previous Chair)<br />
</td>
</tr>
<tr><th></th>
<th>Members</th>
<td>Abdul-jabbar Asiri<br />
Jin Seek Choi<br />
Ralph Droms<br />
Dan Forsberg<br />
Ole J. Jacobsen<br />
Kireeti Kompella<br />
David E. Martin<br />
Basavaraj Patil<br />
Richard Shockey<br />
Andrew Thiessen<br />
</td>
</tr>
<tr><th></th>
<th>Liaison Members</th>
<td>Geoff Huston (IAB Liaison)<br />
Bill Fenner (IESG liaison)<br />
</td>
</tr>
</tbody>
</table>
<table class="table table-condensed">
<tbody class="meta">
<h3 class="anchor-target" id="2002">2002/2003</h3>
<tr><th></th>
<th>Chair</th>
<td>Phil Roberts<br /></td>
</tr>
<tr><th></th>
<th>Advisor</th>
<td>Theodore Ts'o (Previous Chair)<br />
</td>
</tr>
<tr><th></th>
<th>Members</th>
<td>Frank Alfano<br />
Dennis Beard<br />
Alec Brusilovsky<br />
Richard Draves<br />
Eva Gustafsson<br />
Eva Jonsson<br />
Thomas Kurien<br />
Edward Lewis<br />
Michael Richardson<br />
Stephen Trowbridge<br />
</td>
</tr>
<tr><th></th>
<th>Liaison Members</th>
<td>Eric Rescorla (IAB liaison)<br />
Allison Mankin (IETF liaison)<br />
</td>
</tr>
</tbody>
</table>
<table class="table table-condensed">
<tbody class="meta">
<h3 class="anchor-target" id="2001">2001/2002</h3>
<tr><th></th>
<th>Chair</th>
<td>Theodore Ts'o<br /></td>
</tr>
<tr><th></th>
<th>Advisor</th>
<td>Bernard Aboba (Previous Chair)<br />
</td>
</tr>
<tr><th></th>
<th>Members</th>
<td>Ron Bonica<br />
Dave Crocker<br />
Eric Gray<br />
Bob Hinden<br />
Matt Holdrege<br />
Danny McPherson<br />
Ersue Mehmet<br />
Radia Perlman<br />
Hal Sandick<br />
Russ White<br />
</td>
</tr>
<tr><th></th>
<th>Liaison Members</th>
<td>Fred Baker (IAB liaison)<br />
Thomas Narten (IESG Liaison)<br />
</td>
</tr>
</tbody>
</table>
<table class="table table-condensed">
<tbody class="meta">
<h3 class="anchor-target" id="2000">2000/2001</h3>
<tr><th></th>
<th>Chair</th>
<td>Bernard Aboba<br /></td>
</tr>
<tr><th></th>
<th>Advisor</th>
<td>Avri Doria (Previous Chair)<br />
</td>
</tr>
<tr><th></th>
<th>Members</th>
<td>David Allan<br />
Stuart Cheshire<br />
Alain Durand<br />
Hadriel Kaplan<br />
Perry E. Metzger<br />
Phil Roberts<br />
David Robinson<br />
Hal Sandick<br />
Vijay Srinivasan<br />
Bill Woodcock<br />
</td>
</tr>
<tr><th></th>
<th>Liaison Members</th>
<td>Leslie Daigle (IAB Liaison)<br />
Allison Mankin (IESG Liaison)<br />
</td>
</tr>
</tbody>
</table>
<table class="table table-condensed">
<tbody class="meta">
<h3 class="anchor-target" id="1999">1999/2000</h3>
<tr><th></th>
<th>Chair</th>
<td>Avri Doria<br /></td>
</tr>
<tr><th></th>
<th>Advisor</th>
<td>Donald E. Eastlake (Previous Chair)<br />
</td>
</tr>
<tr><th></th>
<th>Members</th>
<td>Bernard Aboba<br />
Michael W. Condry<br />
Paul Hoffman<br />
Jim Luciani<br />
Greg Minshall<br />
William B. Norton<br />
Basavaraj Patil<br />
Yakov Rekhter<br />
Bill Sommerfeld<br />
Walter Weiss<br />
</td>
</tr>
<tr><th></th>
<th>Liaison Members</th>
<td>Geoff Huston (IAB Liaison)<br />
Thomas Narten (IESG Liaison)<br />
</td>
</tr>
</tbody>
</table>
<table class="table table-condensed">
<tbody class="meta">
<h3 class="anchor-target" id="1998">1998/1999</h3>
<tr><th></th>
<th>Chair</th>
<td>Donald Eastlake 3rd<br /></td>
</tr>
<tr><th></th>
<th>Advisor</th>
<td>Michael St Johns (Previous Chair)<br />
</td>
</tr>
<tr><th></th>
<th>Members</th>
<td>Avri Doria<br />
Randall Gellens<br />
Stephen R. Hanna<br />
Bob Hinden<br />
R A Lichtensteiger<br />
Bob Mahoney<br />
Keith McCloghrie<br />
David Meyer<br />
Lixia Zhang<br />
Glen Zorn<br />
</td>
</tr>
<tr><th></th>
<th>Liaison Members</th>
<td>Steven Bellovin (IAB Liaison)<br />
Bert Wijnen (IESG Liaison)<br />
Michael St Johns (Previous Chair)<br />
</td>
</tr>
</tbody>
</table>
<table class="table table-condensed">
<tbody class="meta">
<h3 class="anchor-target" id="1997">1997/1998</h3>
<tr><th></th>
<th>Chair</th>
<td>Michael StJohns<br /></td>
</tr>
<tr><th></th>
<th>Advisor</th>
<td>Geoff Huston (Previous Chair)<br />
</td>
</tr>
<tr><th></th>
<th>Members</th>
<td>Bernard Aboba<br />
Uri Blumenthal<br />
John Boudreaux<br />
Avri Doria<br />
Rik Drummond<br />
Donald Eastlake<br />
Steve Hole<br />
Steve Kent<br />
Keith McClogrie<br />
Lixia Zhang<br />
</td>
</tr>
<tr><th></th>
<th>Liaison Members</th>
<td>Tony Hain (IAB Liaison)<br />
Scott Bradner (IESG Liaison)<br />
</td>
</tr>
</tbody>
</table>
<table class="table table-condensed">
<tbody class="meta">
<h3 class="anchor-target" id="1996">1996/1997</h3>
<tr><th></th>
<th>Chair</th>
<td>Geoff Huston<br /></td>
</tr>
<tr><th></th>
<th>Advisor</th>
<td>Guy Almes (Previous Chair)<br />
</td>
</tr>
<tr><th></th>
<th>Members</th>
<td>Guy Almes<br />
Jim Bound<br />
Matt Crawford<br />
Phill Gross<br />
Bob Hinden<br />
Dorian Kim<br />
Bill Manning<br />
Marshall Rose<br />
Mike StJohns<br />
Glen Zorn<br />
</td>
</tr>
<tr><th></th>
<th>Liaison Members</th>
<td>Radia Perlman (IAB Liaison)<br />
Joyce Reynolds (IESG Liaison)<br />
Christian Huitema (ISOC Liaison)<br />
Guy Almes (Previous Chair)<br />
</td>
</tr>
</tbody>
</table>
<table class="table table-condensed">
<tbody class="meta">
<h3 class="anchor-target" id="1995">1995/1996</h3>
<tr><th></th>
<th>Chair</th>
<td>Guy Almes<br /></td>
</tr>
<tr><th></th>
<th>Advisor</th>
<td>John Curran (Previous Chair)<br />
</td>
</tr>
<tr><th></th>
<th>Members</th>
<td>Uri Blumenthal<br />
Jeff Case<br />
Noel Chiappa<br />
Dave Crocker<br />
Donald Eastlake<br />
Ned Freed<br />
David Meyer<br />
Mark Prior<br />
Bob Steen<br />
Paul Traina<br />
</td>
</tr>
<tr><th></th>
<th>Liaison Members</th>
<td>Bob Moskowitz (IAB Liaison)<br />
Harald Alvestrand (IESG Liaison)<br />
</td>
</tr>
</tbody>
</table>
<table class="table table-condensed">
<tbody class="meta">
<h3 class="anchor-target" id="1994">1994/1995</h3>
<tr><th></th>
<th>Chair</th>
<td>John Curran<br /></td>
</tr>
<tr><th></th>
<th>Advisor</th>
<td>Fred Baker (Previous Chair)<br />
</td>
</tr>
<tr><th></th>
<th>Members</th>
<td>Fred Baker<br />
Roxana Bradescu<br />
Peter S. Ford<br />
Tony Genovese<br />
Michael Mealling<br />
Charlie Perkins<br />
Marshall Rose<br />
Greg Ruth<br />
Paul Traina<br />
Steven Waldbusser<br />
</td>
</tr>
</tbody>
</table>
<table class="table table-condensed">
<tbody class="meta">
<h3 class="anchor-target" id="1993">1993/1994</h3>
<tr><th></th>
<th>Chair</th>
<td>Fred Baker<br /></td>
</tr>
<tr><th></th>
<th>Members</th>
<td>Jeff Case<br />
Noel Chiappa<br />
Alan Clegg<br />
Jeroen Houttuin<br />
Daniel Karrenberg<br />
Andy Nicholson<br />
Dr. Marshall T. Rose<br />
</td>
</tr>
<tr><th></th>
<th>Liaison Members</th>
<td>Bob Braden (IAB Liaison)<br />
Stev Knowles (IESG Liaison)<br />
Jon Postel (IRSG Liaison)<br />
</td>
</tr>
</tbody>
</table>
<table class="table table-condensed">
<tbody class="meta">
<h3 class="anchor-target" id="1992">1992/1993</h3>
<tr><th></th>
<th>Members</th>
<td>Jack Brown<br />
Peter S. Ford<br />
Steve Kent<br />
Paul Mockapetris<br />
Craig Partridge<br />
Jim Romaguera<br />
Claudio Topolcic<br />
</td>
</tr>
<tr><th></th>
<th>Liaison Members</th>
<td>Barry Leiner (IAB Liaison)<br />
Erik Huizer (IESG Liaison)<br />
Jon Postel (IRSG Liaison)<br />
Geoff Huston (ISOC Liaison)<br />
</td>
</tr>
</tbody>
</table>
</div>
<div class="col-md-2 hidden-print bs-docs-sidebar" id="affix">
<ul class="nav nav-pills nav-stacked small" data-spy="affix">
{% for regime in regimes %}
<li><a href="#{{ regime.year }}">{{ regime.label }}</a></li>
{% endfor %}
<li><a href="#2012">2012/2013</a></li>
<li><a href="#2011">2011/2012</a></li>
<li><a href="#2010">2010/2011</a></li>
<li><a href="#2009">2009/2010</a></li>
<li><a href="#2008">2008/2009</a></li>
<li><a href="#2007">2007/2008</a></li>
<li><a href="#2006">2006/2007</a></li>
<li><a href="#2005">2005/2006</a></li>
<li><a href="#2004">2004/2005</a></li>
<li><a href="#2003">2003/2004</a></li>
<li><a href="#2002">2002/2003</a></li>
<li><a href="#2001">2001/2002</a></li>
<li><a href="#2000">2000/2001</a></li>
<li><a href="#1999">1999/2000</a></li>
<li><a href="#1998">1998/1999</a></li>
<li><a href="#1997">1997/1998</a></li>
<li><a href="#1996">1996/1997</a></li>
<li><a href="#1995">1995/1996</a></li>
<li><a href="#1994">1994/1995</a></li>
<li><a href="#1993">1993/1994</a></li>
<li><a href="#1992">1992/1993</a></li>
</ul>
</div>
</div>
{% endblock %}
{% block js %}
<script src="{% static "jquery.tablesorter/js/jquery.tablesorter.combined.min.js" %}"></script>
{% endblock %}