|
| 1 | +{% extends "base.html" %} |
| 2 | +{# Copyright The IETF Trust 2015, All Rights Reserved #} |
| 3 | +{% load origin %} |
| 4 | + |
| 5 | +{% load ietf_filters staticfiles %} |
| 6 | + |
| 7 | +{% block pagehead %} |
| 8 | +<link rel="stylesheet" href="{% static "jquery.tablesorter/css/theme.bootstrap.min.css" %}"> |
| 9 | +{% endblock %} |
| 10 | + |
| 11 | +{% block bodyAttrs %}data-spy="scroll" data-target="#affix"{% endblock %} |
| 12 | + |
| 13 | +{% block title %}IETF {{ meeting_num }} Proceedings {% endblock %} |
| 14 | + |
| 15 | +{% block content %} |
| 16 | + {% origin %} |
| 17 | + <div class="row"> |
| 18 | + <div class="col-md-10"> |
| 19 | + |
| 20 | + <h1>IETF {{ meeting_num }} Proceedings</h1> |
| 21 | + |
| 22 | + <p class="alert alert-info"> |
| 23 | + <b>This page is under construction</b> |
| 24 | + </p> |
| 25 | + |
| 26 | + {# cache for 15 minutes, as long as there's no proceedings activity. takes 4-8 seconds to generate. #} |
| 27 | + {% load cache %} |
| 28 | + {% cache 900 ietf_meeting_materials meeting_num cache_version %} |
| 29 | + |
| 30 | + {% with "True" as show_agenda %} |
| 31 | + <!-- Plenaries --> |
| 32 | + {% if plenaries %} |
| 33 | + <h2 class="anchor-target" id="plenaries">Plenaries</h2> |
| 34 | + <table class="table table-condensed table-striped tablesorter"> |
| 35 | + <thead> |
| 36 | + <tr> |
| 37 | + <th class="col-md-1">Group</th> |
| 38 | + <th class="col-md-1">Agenda</th> |
| 39 | + <th class="col-md-1">Minutes</th> |
| 40 | + <th class="col-md-6">Slides</th> |
| 41 | + <th class="col-md-3">Drafts</th> |
| 42 | + </tr> |
| 43 | + </thead> |
| 44 | + |
| 45 | + <tbody> |
| 46 | + {% for session in plenaries %} |
| 47 | + {% include "meeting/group_materials.html" %} |
| 48 | + {% endfor %} |
| 49 | + </tbody> |
| 50 | + </table> |
| 51 | + {% endif %} |
| 52 | + |
| 53 | + <!-- Working groups --> |
| 54 | + {% regroup ietf|dictsort:"group.parent.acronym" by group.parent.name as areas %} |
| 55 | + {% for sessions in areas %} |
| 56 | + <h2 class="anchor-target" id="{{sessions.list.0.group.parent.acronym}}">{{sessions.list.0.group.parent.acronym|upper}} <small>{{ sessions.grouper }}</small></h2> |
| 57 | + <table class="table table-condensed table-striped tablesorter"> |
| 58 | + <thead> |
| 59 | + <tr> |
| 60 | + <th class="col-md-1">Group</th> |
| 61 | + <th class="col-md-1">Agenda</th> |
| 62 | + <th class="col-md-1">Minutes</th> |
| 63 | + <th class="col-md-6">Slides</th> |
| 64 | + <th class="col-md-3">Drafts</th> |
| 65 | + </tr> |
| 66 | + </thead> |
| 67 | + |
| 68 | + <tbody> |
| 69 | + {% for session in sessions.list|dictsort:"group.acronym" %} |
| 70 | + {% ifchanged session.group.acronym %} |
| 71 | + {% include "meeting/group_materials.html" %} |
| 72 | + {% endifchanged %} |
| 73 | + {% endfor %} |
| 74 | + </tbody> |
| 75 | + </table> |
| 76 | + {% endfor %} |
| 77 | + |
| 78 | + <!-- Training Sessions --> |
| 79 | + {% if training %} |
| 80 | + {% with "False" as show_agenda %} |
| 81 | + <h2 class="anchor-target" id="training">Training</h2> |
| 82 | + <table class="table table-condensed table-striped tablesorter"> |
| 83 | + <thead> |
| 84 | + <tr> |
| 85 | + <th class="col-md-1">Group</th> |
| 86 | + <th class="col-md-1">Agenda</th> |
| 87 | + <th class="col-md-1">Minutes</th> |
| 88 | + <th class="col-md-6">Slides</th> |
| 89 | + <th class="col-md-3">Drafts</th> |
| 90 | + </tr> |
| 91 | + </thead> |
| 92 | + |
| 93 | + <tbody> |
| 94 | + {% for session in training %} |
| 95 | + {% ifchanged %} |
| 96 | + {% include "meeting/group_materials.html" %} |
| 97 | + {% endifchanged %} |
| 98 | + {% endfor %} |
| 99 | + </tbody> |
| 100 | + </table> |
| 101 | + {% endwith %} |
| 102 | + {% endif %} |
| 103 | + |
| 104 | + <!-- IAB Sessions --> |
| 105 | + {% if iab %} |
| 106 | + <h2 class="anchor-target" id="iab">IAB <small>Internet Architecture Board</small></h2> |
| 107 | + <table class="table table-condensed table-striped tablesorter"> |
| 108 | + <thead> |
| 109 | + <tr> |
| 110 | + <th class="col-md-1">Group</th> |
| 111 | + <th class="col-md-1">Agenda</th> |
| 112 | + <th class="col-md-1">Minutes</th> |
| 113 | + <th class="col-md-6">Slides</th> |
| 114 | + <th class="col-md-3">Drafts</th> |
| 115 | + </tr> |
| 116 | + </thead> |
| 117 | + |
| 118 | + <tbody> |
| 119 | + {% for session in iab %} |
| 120 | + {% ifchanged %} |
| 121 | + {% include "meeting/group_materials.html" %} |
| 122 | + {% endifchanged %} |
| 123 | + {% endfor %} |
| 124 | + </tbody> |
| 125 | + </table> |
| 126 | + {% endif %} |
| 127 | + |
| 128 | + <!-- IRTF Sessions --> |
| 129 | + {% if irtf %} |
| 130 | + <h2 class="anchor-target" id="irtf">IRTF <small>Internet Research Task Force</small></h2> |
| 131 | + <table class="table table-condensed table-striped tablesorter"> |
| 132 | + <thead> |
| 133 | + <tr> |
| 134 | + <th class="col-md-1">Group</th> |
| 135 | + <th class="col-md-1">Agenda</th> |
| 136 | + <th class="col-md-1">Minutes</th> |
| 137 | + <th class="col-md-6">Slides</th> |
| 138 | + <th class="col-md-3">Drafts</th> |
| 139 | + </tr> |
| 140 | + </thead> |
| 141 | + |
| 142 | + <tbody> |
| 143 | + {% for session in irtf|dictsort:"group.acronym" %} |
| 144 | + {% ifchanged %} |
| 145 | + {% include "meeting/group_materials.html" %} |
| 146 | + {% endifchanged %} |
| 147 | + {% endfor %} |
| 148 | + </tbody> |
| 149 | + </table> |
| 150 | + {% endif %} |
| 151 | + {% endwith %} |
| 152 | + {% endcache %} |
| 153 | + </div> |
| 154 | + |
| 155 | + <div class="col-md-2 hidden-print bs-docs-sidebar" id="affix"> |
| 156 | + <ul class="nav nav-pills nav-stacked small" data-spy="affix"> |
| 157 | + {% if plenaries %} |
| 158 | + <li><a href="#plenaries">Plenaries</a></li> |
| 159 | + {% endif %} |
| 160 | + {% if ietf %} |
| 161 | + {% regroup ietf|dictsort:"group.parent.acronym" by group.parent as areas %} |
| 162 | + {% for area in areas %} |
| 163 | + <li><a href="#{{area.grouper.acronym}}">{{ area.grouper.acronym|upper }}</a></li> |
| 164 | + {% endfor %} |
| 165 | + {% endif %} |
| 166 | + {% if training %} |
| 167 | + <li><a href="#training">Training</a></li> |
| 168 | + {% endif %} |
| 169 | + {% if iab %} |
| 170 | + <li><a href="#iab">IAB</a></li> |
| 171 | + {% endif %} |
| 172 | + {% if irtf %} |
| 173 | + <li><a href="#irtf">IRTF</a></li> |
| 174 | + {% endif %} |
| 175 | + </ul> |
| 176 | + </div> |
| 177 | + </div> |
| 178 | +{% endblock %} |
| 179 | + |
| 180 | +{% block js %} |
| 181 | +<script src="{% static "jquery.tablesorter/js/jquery.tablesorter.combined.min.js" %}"></script> |
| 182 | +{% endblock %} |
0 commit comments