{% extends "base.html" %}{% load ietf_filters %}
{# Copyright The IETF Trust 2007, All Rights Reserved #}
{% block title %}IETF {{ meeting.num }} Meeting Timeslot Requests{% endblock %}
{% block morecss %}
h2 { border-style: none none solid none }
h3 { color: #0000a0 }
th { text-align: right; vertical-align: text-top; }
{% endblock morecss %}
{% block content %}
IETF {{ meeting.num }} Meeting Timeslot Requests
{# cache for 15 minutes -- XXX need to add criteria #}
{% load cache %}
{% cache 900 meeting.num %}
{% endcache %}
{% regroup sessions|dictsort:"area" by area as area_list %}
{% for area in area_list %}
{% if area.grouper %}{% ifnotequal area.grouper|upper "1PLENARY" %}
{{area.grouper|upper}}
Summary
{% for session in area.list|dictsort:"acronym" %}
{% if session.length_session1 %}
{{session.acronym|upper}}: |
{{session.length_session1_desc}}
{% ifnotequal session.length_session2 "0" %}
+ {{session.length_session2_desc}}
{% endifnotequal %}
{% ifnotequal session.length_session3 "0" %}
+ {{session.length_session3_desc}}
{% endifnotequal %}
|
{% endif %}
{% endfor %}
Unscheduled: |
{% for wg in wgs %}
{% ifequal wg.area_acronym|upper area.grouper|upper %}
{% ifequal wg.meeting_scheduled|upper "NO" %}
{{wg|upper}}
{% endifequal %}
{% endifequal %}
{% endfor %}
|
{% for session in area.list|dictsort:"acronym" %}
{% if session.length_session1 %}
{{session.acronym|upper}}
Requested By: |
{{session.requested_by}} on {{session.requested_date}}
{% ifnotequal session.requested_date session.last_modified_date %}
(modified {{session.last_modified_date}})
{% endifnotequal %}
|
Session Length: |
{{session.length_session1_desc}}
{% ifnotequal session.length_session2 "0" %}
+ {{session.length_session2_desc}}
{% endifnotequal %}
{% ifnotequal session.length_session3 "0" %}
+ {{session.length_session3_desc}}
{% endifnotequal %}
|
{% if session.conflict1 %}
Primary Conflicts: | {{session.conflict1}} |
{% endif %}
{% if session.conflict2 %}
Secondary Conflicts: | {{session.conflict2}} |
{% endif %}
{% if session.conflict3 %}
Tertiary Conflicts: | {{session.conflict3}} |
{% endif %}
{% if session.conflict_other %}
Other Conflicts: | {{session.conflict_other}} |
{% endif %}
{% if session.special_req %}
Special Requests: | {{session.special_req}} |
{% endif %}
{% if session.ad_comments %}
AD Comments: | {{session.ad_comments}} |
{% endif %}
{% endif %}
{%endfor%}
{% endifnotequal %}{% endif %}
{% endfor %}
{% endblock %}