{% if full %} {% extends "master.html" %} {% block title %}{{ _('Meeting "%(name)s"', name=org_meeting.meeting_name) }}{% endblock %} {%block tag %}home{% endblock %} {% else %} {% extends "base_partial.html" %} {% endif %} {% block content %}

{{ _('Meeting "%(name)s"', name=org_meeting.meeting_name) }}

( {{ org_meeting.calendar_name }})

{% if org_meeting.meeting_location %}

{{ _('Location:') }} {{ org_meeting.meeting_location }}

{%endif%}
{% autoescape off%} {{ org_meeting.meeting_information | markdown or _('No description') }} {% endautoescape %}
{% if org_meeting.recursion_frequency and org_meeting.recursion_ends %}

{{ _('This meeting is recurrent, it occurs every %(frequency)s days until %(ends)s', frequency=org_meeting.recursion_frequency, ends=org_meeting.recursion_ends) }}

{% endif %} {% macro get_managers(managers) %} {% for manager in managers %}{{ manager }} {%- if not loop.last %},{% endif %}{% endfor %}. {% endmacro %}

{{ _('Meeting organized by %(managers)s', managers=get_managers(org_meeting.meeting_manager)) }}

{{ _('iCal export') }} {% if reminder_options %} {% endif %} {% if editor %}

{{ _('Stored as:') }}

{{ _('Edit') }} {{ _('Delete') }}

{% endif %}
{% endblock %} {% block jscripts %} {{ super() }} {% endblock %}