Use foundation_field in map_form.html
This commit is contained in:
parent
a08d1901cd
commit
a4e29c124a
2 changed files with 7 additions and 11 deletions
|
@ -67,3 +67,6 @@ input:-moz-placeholder, :-moz-placeholder {
|
||||||
#reveal-container textarea {
|
#reveal-container textarea {
|
||||||
height: 100px;
|
height: 100px;
|
||||||
}
|
}
|
||||||
|
#reveal-container select {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
|
@ -1,20 +1,13 @@
|
||||||
|
{% load youmap_tags %}
|
||||||
<h3>Create your map now!</h3>
|
<h3>Create your map now!</h3>
|
||||||
<form action="{{ action_url }}" method="post" id="map_edit">
|
<form action="{{ action_url }}" method="post" id="map_edit">
|
||||||
{% for error in form.non_field_errors %}
|
{% for error in form.non_field_errors %}
|
||||||
<small class="error">{{ error }}</small>
|
<small class="error">{{ error }}</small>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
{{ form.name }}
|
{% foundation_field form.name %}
|
||||||
{% for error in form.name.errors %}
|
{% foundation_field form.description %}
|
||||||
<small class="error">{{ error|escape }}</small>
|
{% foundation_field form.licence %}
|
||||||
{% 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.zoom }}
|
||||||
{{ form.center }}
|
{{ form.center }}
|
||||||
<input type="submit" class="button" />
|
<input type="submit" class="button" />
|
||||||
|
|
Loading…
Reference in a new issue