2 <h2>{% trans %}Add{% endtrans %}</h2>
3 {{ form_start(forms.location) }}
5 {{ form_row(forms.location.title) }}
7 {{ form_row(forms.location.short) }}
9 {{ form_row(forms.location.address) }}
11 {{ form_row(forms.location.zipcode) }}
13 {{ form_row(forms.location.city) }}
15 {{ form_row(forms.location.latitude) }}
17 {{ form_row(forms.location.longitude) }}
19 {{ form_row(forms.location.hotspot) }}
21 {{ form_row(forms.location.submit) }}
24 {# render csrf token etc .#}
25 <footer style="display:none">{{ form_rest(forms.location) }}</footer>
26 {{ form_end(forms.location) }}