26 lines
1.2 KiB
Plaintext
26 lines
1.2 KiB
Plaintext
{% load ams_filters %}
|
|
---------------------------------------------------------
|
|
Working Group Name: {{ group.name }}
|
|
Area Name: {{ group.parent }}
|
|
Session Requester: {{ login }}
|
|
{% if session.joint_with_groups %}{{ session.joint_for_session_display }} joint with: {{ session.joint_with_groups }}{% endif %}
|
|
|
|
Number of Sessions: {{ session.num_session }}
|
|
Length of Session(s): {% for session_length in session_lengths %}{{ session_length.total_seconds|display_duration }}{% if not forloop.last %}, {% endif %}{% endfor %}
|
|
Number of Attendees: {{ session.attendees }}
|
|
Conflicts to Avoid:
|
|
{% for line in session.outbound_conflicts %} {{line}}
|
|
{% endfor %}{% if session.session_time_relation_display %} {{ session.session_time_relation_display }}{% endif %}
|
|
{% if session.adjacent_with_wg %} Adjacent with WG: {{ session.adjacent_with_wg }}{% endif %}
|
|
{% if session.timeranges_display %} Can't meet: {{ session.timeranges_display|join:", " }}{% endif %}
|
|
|
|
People who must be present:
|
|
{% for person in session.bethere %} {{ person.ascii_name }}
|
|
{% endfor %}
|
|
Resources Requested:
|
|
{% for resource in session.resources %} {{ resource.desc }}
|
|
{% endfor %}
|
|
Special Requests:
|
|
{{ session.comments }}
|
|
---------------------------------------------------------
|