Use single fields in your form

You can simply take single fields from this app and use them in you own form.
Just in your project include
from django_form_builder import dynamic_fields

and use every field as a normal form field

my_field = dynamic_fields.DynamicFieldClassName(params)

Every field has (or inherit) a raise_error() method that can be overrided to implement cleaning features and validation functions.