umap/youmap/templates/chickpea/map_form.html
2012-12-15 12:48:06 +01:00

19 lines
No EOL
617 B
HTML

<h3>Create your map now!</h3>
<form action="{{ action_url }}" method="post" id="map_edit">
{{ form.non_field_errors }}
{% csrf_token %}
{{ form.name }}
{% for error in form.name.errors %}
<small class="error">{{ error|escape }}</small>
{% endfor %}
{{ form.description }}
{{ form.description.errors }}
<label>{{ form.licence.help_text }}</label>
{{ form.licence }}
{% for error in form.licence.errors %}
<small class="error">{{ error|escape }}</small>
{% endfor %}
{{ form.zoom }}
{{ form.center }}
<input type="submit" class="button" />
</form>