20 lines
945 B
Plaintext
20 lines
945 B
Plaintext
{% load ietf_filters %}
|
|
---------------------------------------------------------
|
|
{{ group.type.verbose_name }} Name: {{ group.name|safe }}
|
|
{% if group.type.slug == "wg" or group.type.slug == "directorate" or group.type.slug == "team" %}Area Name: {{ group.parent }}
|
|
{% endif %}Session Requester: {{ requester }}
|
|
|
|
{% if meeting.city %}City: {{ meeting.city }}
|
|
Country: {{ meeting.country }}
|
|
{% else %}Meeting Type: Virtual Meeting{% endif %}
|
|
|
|
{% for session in meeting.session_set.not_canceled %}Session {{ forloop.counter }}:
|
|
|
|
Date: {{ session.official_timeslotassignment.timeslot.time|date:"Y-m-d" }}
|
|
Start Time: {{ session.official_timeslotassignment.timeslot.time|date:"H:i" }} {{ meeting.time_zone }}
|
|
Duration: {{ session.requested_duration|format_timedelta }}
|
|
Remote Participation Information: {{ session.remote_instructions }}
|
|
Agenda Note: {{ session.agenda_note }}
|
|
{% endfor %}
|
|
---------------------------------------------------------
|