django-formrenderingtools and it fits your needs? How to safely migrate an existing project from standard Django’s practices to formrenderingtools? Here are some guidelines.
In the templates you edit (i.e. you should not patch Django code or code of any third-party application), feel free to replace any:
Such a class is not yet included in django-formrenderingtools. The idea is to instantiate forms which inherit from “SomeFormRenderingToolsCompatibleForm” base class which overrides default Form.__unicode__(), Form.as_table(), Form.as_p() and Form.as_ul().
This could be useful in some cases where:
The main drawback is that you need to edit Python code to perform template- related changes.