{% extends "base.html" %} {% block title %}{{ page_title }} | Roadshow Calendar{% endblock %} {% block content %}
{% if form_mode == 'edit' %}Edit event{% else %}Create event{% endif %}

{{ form_title }}

{{ form_intro }}

{% csrf_token %}
{% for field in form %}
{% if field.name == 'is_published' %}
{{ field }} {% if field.help_text %}
{{ field.help_text }}
{% endif %}
{% else %} {{ field }} {% if field.help_text %}
{{ field.help_text }}
{% endif %} {% endif %} {% for error in field.errors %}
{{ error }}
{% endfor %}
{% endfor %}
{% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
Cancel
{% endblock %}