+ {% for id, title in locations %}
+
+
+ {% if snippets is defined and snippets[id] is defined and snippets[id] %}
+ {{ form_start(snippets[id]) }}
+
+ {{ form_row(snippets[id].description) }}
+
+ {{ form_row(snippets[id].submit) }}
+
+ {% if snippets[id].delete is defined %}
+ {{ form_row(snippets[id].delete) }}
+ {% endif %}
+
+
+ {# render csrf token etc .#}
+
+ {{ form_end(snippets[id]) }}
+ {% endif %}
+
+ {% endfor %}
+
+