Skip to content

Instantly share code, notes, and snippets.

@muroshi
muroshi / home.html
Created January 20, 2016 11:20 — forked from doobeh/gist:5d0f965502b86fee80fe
More complete example of FieldList with FormField
<form method="post" action="">
{{ form.name}}
{{ form.hidden_tag() }}
<br/>
{% for entry in form.hours %}
{{ loop.index0|dow }}
{{ entry() }}
{% endfor %}
<input type="submit"/>
</form>