{% extends "master.html" %} {% from "_formhelpers.html" import render_field %} {% block title %}Add meeting{% endblock %} {%block tag %}home{% endblock %} {% 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)}} {{ render_field_in_row(form.meeting_time_stop)}} {{ render_field_in_row(form.full_day) }} {{ render_field_in_row(form.meeting_timezone) }} {{ render_field_in_row( form.information, after="Supports the Markdown syntax ", escape_after=True) }} {{ render_field_in_row(form.wiki_link) }} {{ render_field_in_row(form.meeting_location) }} 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) }} {{ 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.
{{ form.csrf_token }}