Skip to content

Instantly share code, notes, and snippets.

@j
Created August 1, 2011 23:30
Show Gist options
  • Save j/1119243 to your computer and use it in GitHub Desktop.
Save j/1119243 to your computer and use it in GitHub Desktop.
{% block _path_zones_row %}
{% spaceless %}
<div class="collection">
<ul id="sortable">
{% for name, child in form %}
{% if name is not sameas('$$name$$') %}
<li class="collection_item">
{{ form_widget(child) }}
<div class="remove">
<label>&nbsp;</label>
<a href="#" title="Remove">Remove</a>
</div>
</li>
{% else %}
<script id="collection_prototype" type="text/html">
<li class="collection_item">
{{ form_widget(child) }}
<div class="remove">
<label>&nbsp;</label>
<a href="#" title="Remove">Remove</a>
</div>
</li>
</script>
{% endif %}
{% endfor %}
</ul>
<div class="add">
<label>&nbsp;</label>
<a href="#" title="Add">Add</a>
</div>
</div>
{% endspaceless %}
{% endblock _path_zones_row %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment