django-formrenderingtools

Warning

This project is inactive. Django-floppyforms is the recommended alternative since it supports form layouts. See: https://pypi.python.org/pypi/django-floppyforms

Customize layout of Django forms in templates, not in Python code.

Rather than using {{ form.as_p }}, set up and reuse templates to render Django’s form elements.

As an example, to reproduce Django’s {{ form.as_p }}:

{% load form_layouts %}
<form>
  {% form layout="as_p" %}
  <input type="submit">
</form>

Credits and license

This application is published under the BSD license. See License and Authors for details.