{% extends "eventum_events/create.html" %} {% import "eventum_macros.html" as macros %} {% block title %}Edit {{ event.title }}{% endblock %} {% block pagetitle %}Edit Post{% endblock %} {% block pagelink %}{{ url_for('events.index') }}{% endblock %} {% block action %} action="{{ url_for('events.edit', event_id=event.id) }}" {% endblock %} {% block barright %}
{% if event.is_recurring %} {% if event.published %} Save {% else %} Save Draft {% endif %} {% else %} {% if event.published %} Save {% else %} Save Draft {% endif %} {% endif %} {% if current_user.can("publish") %} {% if event.published %} {{ macros.toggle("Publish", "Unpublish")}} {% else %} {{ macros.toggle("Publish", "Unpublish", start_on=False)}} {% endif %} {% endif %}
{% endblock %} {% block toolbar %} {{ super() }}
{% call macros.confirm("Delete Event", url_for('events.delete', event_id=event.id)) %} Confirm {% endcall %}
{% endblock %} {% block main %} {% call macros.modal(modal="delete") %}

Delete Reoccuring Event

You may edit the current, upcoming, or all events in this series

Delete only this event Delete all events in this series
{% endcall %} {% call macros.modal(modal="save-options") %}

Edit Reoccuring Event

You may edit the current, upcoming, or all events in this series

Change only this event
Change all events in this series
{% endcall %} {{ super() }} {% endblock %}