datatracker/ietf/templates/meeting/agenda.html
Michael Lee 1c9bf9b1ca meeting_agenda_html.cgi porting has been completed.
* Add a new method, affiliation to idtracker/models.py, in class PersonOrOrgInfo
 * Agenda for the Plenaries should be stored in /home/master-site/proceedings directory to be displayed.
 * Bug found in listing ADs at the end of the agenda. An agenda always lists the current IESG instead of the IESG at each meeting. Bug is fixed in the ported tool.
 * meeting_agenda_text.cgi was obsolete, but ported anyway in case someone still has it bookmarked.
 - Legacy-Id: 182
2007-05-30 13:47:09 +00:00

82 lines
3.6 KiB
HTML

{% extends "base.html" %}
{% block title %} Meeting Agenda of IETF {{ meeting_num }} {% endblock %}
{% block body_attributes %}background="http://www.ietf.org/meetings/peachbkg.gif"{% endblock %}
{% block content %}
<center>
<strong> Agenda of the {{ meeting_num }}th IETF Meeting </strong> <br/>
<strong> {{ meeting_info.start_date|date:"F j, Y" }} - {{ meeting_info.end_date|date:"F 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, 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, 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 %}