[Answer]-How to create a list with links to available django-forms-builder forms

1👍

Forms builder user here!

django-forms-builder forms are just objects of class forms.models.Form. You can list them in a normal view.

To use these Form instances you need to feed them to FormFormForm like this:

FormForForm(form, RequestContext(request),
                                request.POST or None,
                                request.FILES or None)

and then use it in your post view. See this view.

To display them you can simply use the render_built_form template tag:

{% render_built_form form_instance %}

See Usage.

Leave a comment