forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterim_info.txt
More file actions
19 lines (16 loc) · 945 Bytes
/
interim_info.txt
File metadata and controls
19 lines (16 loc) · 945 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% 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 %}
---------------------------------------------------------