Capitalize day names. Don't repeat the month unless necessary and the year at all of the meeting dates. Still missing: group type (e.g., "WG" or "BOF") - Legacy-Id: 522
83 lines
3.8 KiB
HTML
83 lines
3.8 KiB
HTML
{% extends "base.html" %}
|
|
{% load humanize %}
|
|
{% block title %} Meeting Agenda of the {{ meeting_num|ordinal }} IETF Meeting{% endblock %}
|
|
{% block body_attributes %}background="http://www.ietf.org/meetings/peachbkg.gif"{% endblock %}
|
|
{% block content %}
|
|
|
|
<center>
|
|
<strong> Agenda of the {{ meeting_num|ordinal }} IETF Meeting </strong> <br/>
|
|
<strong>{{ meeting_info.start_date|date:"F j" }}-{% ifnotequal meeting_info.start_date|date:"F" meeting_info.end_date|date:"F" %}{{ meeting_info.end_date|date:"F " }}{% endifnotequal %}{{ meeting_info.end_date|date:"j, Y" }} </strong><br />
|
|
Updated As of {% now "F j, Y" %}<br />
|
|
</center>
|
|
|
|
<a href="http://www3.ietf.org//meetings/agenda_{{meeting_num}}.txt"> Text Format of the 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 *** <br />
|
|
</P>
|
|
<p><b>{{ meeting_info.start_date|date:"l"|upper }}, {{ meeting_info.start_date|date:"F j, Y" }}</b><br>
|
|
{{ nonsession_info.0.time_desc }} {{ nonsession_info.0.non_session_ref }} - {{ meetingvenue_info.reg_area_name }}
|
|
<br>
|
|
{% for item in qs_sun %}
|
|
{{ item.sched_time_id1.time_desc }} {{ item.acronym_name }} - {{ item.sched_room_id1.room_name }}<br>
|
|
{% endfor %}
|
|
<br>
|
|
{% regroup object_list by day_id as days %}
|
|
{% for day in days %}
|
|
<b>{{ day.list.0.meeting_date|date:"l"|upper }}, {{ day.list.0.meeting_date|date:"F j, Y" }} </b><br>
|
|
{% if day.list.0.reg_info %}{{ day.list.0.reg_info }} - {{ meetingvenue_info.reg_area_name }} <br>{% endif %}
|
|
{% ifequal day.list.0.day_id "5" %}
|
|
{{ day.list.0.fbreak_info }} - {{ meetingvenue_info.break_area_name }} <br>
|
|
{% else %}
|
|
{{ day.list.0.morning_br_info }} - {{ meetingvenue_info.break_area_name }} <br>
|
|
{% endifequal %}
|
|
<br>
|
|
{% for item in day.list %}
|
|
{% ifequal item.session_name_id 3 %}
|
|
{{ day.list.0.lunch_br_info }} Break<br>
|
|
{% endifequal %}
|
|
{% ifequal item.session_name_id 4 %}
|
|
{{ day.list.0.an_br1_info }}<br>
|
|
{% endifequal %}
|
|
{% ifequal item.session_name_id 5 %}
|
|
{{ day.list.0.an_br2_info }}<br>
|
|
{% endifequal %}
|
|
<b>{{ item.time_desc }} {{ item.session_name }} </b>
|
|
{% ifequal item.sessions.0.acronym "plenaryw" %}
|
|
<b>- {{ item.sessions.0.room_id.room_name }}</b><br>
|
|
<pre>{{ plenaryw_agenda|escape }}</pre>
|
|
{% else %}
|
|
{% ifequal item.sessions.0.acronym "plenaryt" %}
|
|
<b>- {{ item.sessions.0.room_id.room_name }}</b><br>
|
|
<pre>{{ plenaryt_agenda|escape }}</pre>
|
|
{% else %}
|
|
<table border="0" cellspacing="0" cellpadding="0" width="800">
|
|
{% for session in item.sessions|dictsort:"area" %}
|
|
<tr><td width="200">{{ session.room_id.room_name }}</td><td width="50">{{ session.area|upper }}</td><td width="100">{% if session.isWG %}<a href="http://www.ietf.org/html.charters/{{ session.acronym|lower }}-charter.html">{{ session.acronym|lower }}</a>{% else %}{{ session.acronym|lower }}{% endif %}</td><td>{% if session.agenda_file %}<a href="http://www3.ietf.org/proceedings/{{ session.agenda_file }}">{{ session.acronym_name }}</a>{% else %}{{ session.acronym_name }}{% endif %}{% if session.special_agenda_note %} <b>- {{ session.special_agenda_note|upper }}</b>{% endif %}</td></tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% endifequal %}
|
|
{% endifequal %}
|
|
<br>
|
|
{% endfor %}
|
|
<br>
|
|
{% endfor %}
|
|
<hr>
|
|
<center><b>AREA DIRECTORS</b></center><br>
|
|
<table border="0" width="800">
|
|
{% regroup qs_ads by area as ads %}
|
|
{% for ad in ads %}
|
|
<tr valign="top">
|
|
<td width="65">{{ ad.grouper|upper }}</td>
|
|
<td width="140">{{ ad.list.0.area.area_acronym.name }}</td>
|
|
<td>
|
|
{% for ad_person in ad.list %}
|
|
{% ifequal forloop.counter 2 %} & {% endifequal %}
|
|
{{ ad_person.person }}/{{ ad_person.person.affiliation }}
|
|
{% endfor %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% endblock %}
|