Advertisement
Guest User

Untitled

a guest
May 6th, 2015
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. {% for key, child in form %}
  2. {% if key != "placeholder" %}
  3. {{ key }}
  4. {% endif %}
  5. {% endfor %}
  6. {# returns 1 2 3 4 5 6 7 8 9 #}
  7. {# expected 0 1 2 3 4 5 6 7 8 9 #}
  8.  
  9. {% for key, child in form %}
  10. {{ key }}
  11. {% endfor %}
  12. {# returns placeholder 0 1 2 3 4 5 6 7 8 9 #}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement