{% extends "master.html" %} {% block title %}Delete meeting{% endblock %} {%block tag %}mymeeting{% endblock %} {% block content %}

Meeting: {{ meeting.meeting_name}}

Stored as:

You are removing this meeting from the calendar {{ meeting.calendar_name }}.

Are you positively sure that's what you want to do?

{{ render_field_invert(form.confirm_delete) }} {% if meeting.recursion_frequency %}

This meeting is a regular meeting, are you sure you want to delete all of them or just this one ? (Check only if you want to delete all future meetings as well)

This meeting is recurring every {{ meeting.recursion_frequency }} until {{ meeting.recursion_ends }}

{{ render_field_invert(form.confirm_futher_delete) }} {% endif %}

{{ form.csrf_token }}
{% endblock %} {% block jscripts %} {{ super() }} {% endblock %}