HTML Widgets
A simple widget library to provide HTML4 widgets for HTML validation fanatics.
- html
- widget
- html4
A simple widget library to provide HTML4 widgets for HTML validation fanatics.
This filter converts a XHTML-compatible shorttag `<input ... />` to a HTML4-compatible tag `<input ...>`. Example: `{% for field in form %} <dt>{{ field.label_tag }}</dt> <dd> {{ field.errors }} {{ field|remove_shorttag }} </dd> {% endfor %}` This will produce html4-compatible output, opposed to newform's normal XHTML output.