{% extends "base.html" %} {% block title %}{{ page_title }}{% endblock %} {% block meta_description %}{{ meta_description }}{% endblock %} {% block content %}
Organizer tools

{{ form_title }}

{{ form_intro }}

Event setup

{{ form_section_title }}

{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{{ form.title }} {% if form.title.errors %}
{{ form.title.errors|join:', ' }}
{% endif %}
{{ form.summary }} {% if form.summary.errors %}
{{ form.summary.errors|join:', ' }}
{% endif %}
{{ form.description }} {% if form.description.errors %}
{{ form.description.errors|join:', ' }}
{% endif %}
{{ form.venue }} {% if form.venue.errors %}
{{ form.venue.errors|join:', ' }}
{% endif %}

Schedule & access

{{ form.start_at }} {% if form.start_at.errors %}
{{ form.start_at.errors|join:', ' }}
{% endif %}
{{ form.end_at }} {% if form.end_at.errors %}
{{ form.end_at.errors|join:', ' }}
{% endif %}
{{ form.capacity }}
Leave blank for open attendance.
{% if form.capacity.errors %}
{{ form.capacity.errors|join:', ' }}
{% endif %}
{{ form.registration_opens }} {% if form.registration_opens.errors %}
{{ form.registration_opens.errors|join:', ' }}
{% endif %}
{{ form.registration_closes }} {% if form.registration_closes.errors %}
{{ form.registration_closes.errors|join:', ' }}
{% endif %}
{{ form.is_published }} {% if form.is_published.errors %}
{{ form.is_published.errors|join:', ' }}
{% endif %}
Cancel
{% endblock %}