Created
August 1, 2011 23:30
-
-
Save j/1119243 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% 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> </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> </label> | |
<a href="#" title="Remove">Remove</a> | |
</div> | |
</li> | |
</script> | |
{% endif %} | |
{% endfor %} | |
</ul> | |
<div class="add"> | |
<label> </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