66 lines
2.7 KiB
HTML
66 lines
2.7 KiB
HTML
{% extends "proceedings/proceedings_template.html" %}
|
|
|
|
{% block content %}
|
|
|
|
{% include "includes/proceeding_title.html" %}
|
|
|
|
<h3>Agenda of IETF {{ meeting.number }}</h2>
|
|
{{ meeting.date|date:"F d,Y" }}<br />
|
|
(<a href="agenda.txt">Plain Text Agenda</a>)<br />
|
|
<p>*** Click on an acronym of the group to get a charter page ***<br />
|
|
*** Click on a name of the group to get a meeting agenda ***</p>
|
|
|
|
<table id="agenda">
|
|
{% for ss in scheduledsessions %}
|
|
{% ifchanged %}
|
|
<tr class="meeting-date">
|
|
<td colspan="6">
|
|
<h2 class="ietf-divider">{{ ss.timeslot.time|date:"l"|upper }}, {{ ss.timeslot.time|date:"F j, Y" }}</h2>
|
|
</td>
|
|
</tr>
|
|
{% endifchanged %}
|
|
{% ifchanged %}
|
|
<tr class="time-title">
|
|
<td colspan="1">
|
|
<b>{{ss.timeslot.time|date:"Hi"}}-{{ss.timeslot.end_time|date:"Hi"}}</b>
|
|
</td>
|
|
<td colspan="5">
|
|
<b>{{ss.timeslot.name}}</b>
|
|
{% if ss.timeslot.type.name != 'Session' %}
|
|
{% if ss.timeslot.show_location %} - {{ss.timeslot.get_location}}{% endif %}
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
{% endifchanged %}
|
|
{% if ss.timeslot.type.name == 'Session' %} {% if ss.session.group %}
|
|
<tr id="{{meeting.number}}-{{ss.timeslot.time|date:"D-Hi"|lower}}-{{ss.session.group.parent.acronym|upper}}-{{ss.session.group.acronym|lower}}" class="grouprow">
|
|
<td style="width:200px">{% if ss.timeslot.show_location %}{{ss.timeslot.get_location}}{% endif %}</td>
|
|
<td style="width:50px">{{ss.session.group.parent.acronym|upper}}</td>
|
|
<td style="width:100px">
|
|
{% if ss.session.group.charter %}<a href="{{ss.session.group.charter.get_absolute_url}}">{{ss.session.group.acronym}}</a>
|
|
{% else %}{{ss.session.group.acronym}}{% endif %}</td>
|
|
<td>
|
|
{% if ss.session.agenda %}<a href="/meeting/{{ meeting.number }}/agenda/{{ ss.session.group.acronym }}/">{{ss.session.group.name}}</a>
|
|
{% else %}{{ss.session.group.name}}{% endif %}
|
|
{% if ss.session.group.state.name == "BOF" %} BOF {% endif %}
|
|
{% if ss.session.agenda_note %}
|
|
<br/><span class="note">{{ss.session.agenda_note}}</span>{% endif %}</td>
|
|
</tr>
|
|
|
|
{% endif %} {% endif %}
|
|
{% if ss.timeslot.type.name == 'Plenary' %}
|
|
<tr class="grouprow">
|
|
<td style="width:200px">{% if ss.timeslot.show_location %}{{ss.timeslot.get_location}}{% endif %}</td>
|
|
<td></td>
|
|
<td></td>
|
|
<td>{% if ss.session.agenda %}<a href="{{ ss.session.agenda.get_absolute_url }}">Agenda</a>
|
|
{% else %}{{ss.session.group.name}}{% endif %}
|
|
</td>
|
|
</tr>
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
</table>
|
|
|
|
{% endblock %}
|