{% if full %} {% extends "master.html" %} {% block title %}Meeting {{ meeting.meeting_name}}{% endblock %} {%block tag %}home{% endblock %} {% endif %} {% block content %}

Meeting: {{ meeting.meeting_name}}

( {{ meeting.calendar_name }})

{% if meeting.meeting_location %}

Location: {{ meeting.meeting_location }}

{%endif%}
{% 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:

Edit Delete

{% 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 %}