14 lines
No EOL
459 B
HTML
14 lines
No EOL
459 B
HTML
{% load youmap_tags %}
|
|
<h3>Create your map now!</h3>
|
|
<form action="{{ action_url }}" method="post" id="map_edit">
|
|
{% for error in form.non_field_errors %}
|
|
<small class="error">{{ error }}</small>
|
|
{% endfor %}
|
|
{% csrf_token %}
|
|
{% foundation_field form.name %}
|
|
{% foundation_field form.description %}
|
|
{% foundation_field form.licence %}
|
|
{{ form.zoom }}
|
|
{{ form.center }}
|
|
<input type="submit" class="button" />
|
|
</form> |