Meeting: {{ meeting.meeting_name}}
(
{{ meeting.calendar_name }})
{% if meeting.meeting_location %}
Location: {{ meeting.meeting_location }}
{%endif%}
-
Start:
{{ next_meeting.meeting_date.strftime('%a, %B %d, %Y') }} - {{
next_meeting.meeting_time_start.strftime('%H:%M') }} {{ tzone }}
-
End:
{{ next_meeting.meeting_date_end.strftime('%a, %B %d, %Y') }} - {{
next_meeting.meeting_time_stop }} {{ tzone }}
{% autoescape off%} {{ meeting.meeting_information | markdown or 'No description' }} {% endautoescape %}
{% if meeting.recursion_frequency and meeting.recursion_ends %}
This meeting is recurrent, it occurs every
{{ meeting.recursion_frequency }} days until
{{ meeting.recursion_ends }}
{% endif %}
Meeting organized by
{% for manager in meeting.meeting_manager %}{{ manager }}{%
if not loop.last %},{% endif %}{% endfor %}.
{% if editor %}
Stored as:
-
Start:
{{ org_meeting.meeting_date }} - {{ org_meeting.meeting_time_start
}} {{ org_meeting.meeting_timezone }}
-
End:
{{ org_meeting.meeting_date_end }} - {{ org_meeting.meeting_time_stop
}} {{ org_meeting.meeting_timezone }}
{% endif %}
{% if not full %}
{# We need to include this here, otherwise it won't work in the pop-up view #}
{% endif %}
{% endblock %}
{% if full %}
{% block jscripts %}
{{ super() }}
{% endblock %}
{% endif %}