{% extends "master.html" %} {% block title %} Edit meeting {% endblock %} {% set title_extent = ('Edit meeting "%s"') % meeting.calendar_name %} {% block content %} New meeting Please enter your meeting details in the above form. {{ render_field_in_row(form.meeting_name) }} {{ render_field_in_row(form.meeting_date) }} {{ render_field_in_row(form.meeting_date_end) }} {{ render_field_in_row(form.meeting_time_start, after="%s time" % tzone) }} {{ render_field_in_row(form.meeting_time_stop, after="%s time" % tzone) }} {{ render_field_in_row(form.full_day) }} {{ render_field_in_row(form.meeting_timezone) }} {{ render_field_in_row(form.comanager) }} {{ render_field_in_row( form.information, after="Supports the Markdown syntax ", escape_after=True) }} {% if calendar.calendar_regional_meetings %} {{ render_field_in_row(form.meeting_region) }} {% endif %} Recursive event If this is a regular meeting this is where you want to set it as so. {{ render_field_in_row(form.frequency) }} {{ render_field_in_row(form.end_repeats, after='Leave empty if there is no end date for the repeat.') }} Reminder You may want fedocal to send an email to a mailing list of your choices. Note that fedocal will send the reminder in your name. {{ render_field_in_row(form.remind_when) }} {{ render_field_in_row(form.remind_who) }} {% if meeting.recursion_frequency %} Edit all? This meeting is a recursive meeting, by default your changes will only affect this meeting unless you explecitely say otherwise: {{ render_field_invert(form.recursive_edit) }} {% endif %} {{ form.csrf_token }} {% endblock %} {% block jscripts %} {{ super() }} {% endblock %}
Please enter your meeting details in the above form.
If this is a regular meeting this is where you want to set it as so.
You may want fedocal to send an email to a mailing list of your choices.
Note that fedocal will send the reminder in your name.
This meeting is a recursive meeting, by default your changes will only affect this meeting unless you explecitely say otherwise:
{{ form.csrf_token }}