{% extends "base.html" %}{% load i18n %}{% csrf_token %} {% block title %}{% trans "Add Event" %}{% endblock %} {% block document %}

{% trans "Add Event" %}

{{ event_form.non_field_errors }} {{ recurring_form.non_field_errors }} {% if event_form.errors or recurrence_form.errors %}

{% trans "Please fix any errors." %}

{% endif %}
{% include "event_form_part.html" %} {% include "recurring_form_part.html" %}
{% endblock %}