{% 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 }} Publish this event publicly {% if field.help_text %}{{ field.help_text }}{% endif %} {% else %} {{ field.label }} {{ 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 %} {{ submit_label }} Cancel {% endblock %}
{{ form_intro }}