{% extends "base.html" %} {% load eb %} {% block title %}Petition for {% METRO_NAME %} {{ petition.full_data_name }} data{% endblock %} {% block content %}
{% if is_schema %}

{{ petition.schema.name|capfirst }}

{% endif %}

Petition for {% METRO_NAME %} {{ petition.full_data_name }} data

{% if form.errors %}

Please correct the error{{ form.errors|pluralize }} below in order for us to accept your petition.

{% endif %}
{{ petition.petition|safe|linebreaks }}

Sign here

{% csrf_token %}
Your name:{{ form.name.errors }}{{ form.name }}
Location:{{ form.location.errors }}{{ form.location }}
City:{{ form.city.errors }}{{ form.city }}
State:{{ form.state.errors }}{{ form.state }}
E-mail address:{{ form.email.errors }}{{ form.email }}
Optional notes:{{ form.notes.errors }}{{ form.notes }}
 
{% endblock %}