Skip to content

Instantly share code, notes, and snippets.

@wess
Created June 16, 2010 22:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wess/441335 to your computer and use it in GitHub Desktop.
Save wess/441335 to your computer and use it in GitHub Desktop.
<form method="post">
<dl>
{% for field in form %}
<dt>{{field.label_tag}}</dt>
<dd>{{field}}</dd>
{% if field.errors %}<dd class="field-errors">{{field.errors.as_text}}</dd>{% endif %}
{% endfor %}
<dt>&nbsp;</dt>
<dd><button type="submit">Submit</button></dd>
</dl>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment