{% extends "base.html" %}{% comment %}{% endcomment %} {% load django_static %} {% load recaptcha_tags %} {% load eb %} {% comment %} {% endcomment %} {% block title %}{{action|title}} {{schema.name}}{% endblock %} {% block content %}

{{ action|title }} a {{schema.name}}

{% csrf_token %} {% if form.errors %}
Correct the errors below:
{% endif %}
{{form.non_field_errors}}
{% for field in form %}
{% if not field.is_hidden %} {{field.label_tag}} {% endif %} {{field}} {% if field.name == "location_name" %} map it {% endif %}
{{ field.help_text }}
{{field.errors}}
{% endfor %} {% if need_captcha %}
{% recaptcha_html %} {% if form.errors.recaptcha %}
{{ form.errors.recaptcha }}
{% endif %}
{% endif %}

 
{% endblock content %}