Formunculous
13 Jun 2010

Minor Release Coming Soon

Posted by: Carson Gee

I just thought I would put it out there that I am aware that there are some minor incompatibilities with Formunculous 2.1.0 and Django 1.2. This includes both the CSRF framework addition as well as the backwards incompatible change with formsets. Both of these can be temporarily worked around by commenting out the CSRF middleware from your settings.py file if it is there:

...
MIDDLEWARE_CLASSES = (
...
#	django.middleware.csrf.CsrfMiddleware
...
)

and if you have is with sub-forms with the Max Forms value set to 0 sub-forms are no longer displayed. You will temporarily need to change from 0, to sufficiently high number to work around this until 2.1.1 is released.