{% extends "eventcalendar/event_form_base.html" %} {% load i18n %} {% load static from staticfiles %} {% block extra_head %} {{ block.super }} {{ form.media }} {% endblock %} {% block body %}
{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors|join:"
" }}
{% endif %} {% for field in form.hidden_fields %} {{ field }} {% endfor %} {% for field in form.visible_fields %} {% if field.name == 'price_info' %}
{{ field.label_tag }} {% if field.help_text %}

{{ field.help_text }}

{% endif %} {% if field.errors %}

{{ field.errors|join:"
" }}

{% endif %} {{ field }}
{% else %} {% include "eventcalendar/_form_row.html" %} {% endif %} {% endfor %} {% for inline in inlines %}

Schedules

{% include "eventcalendar/_schedule_inline.html" with formset=inline %}
{% endfor %}
{% endblock %}