Skip to content

Instantly share code, notes, and snippets.

@muroshi
muroshi / home.html
Created January 20, 2016 11:20 — forked from doobeh/home.html
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>