samluescher / django-form-designer

A Django admin app with a GUI to create complex forms without any programming skills; complete with logging, validation, and redirects.
BSD 3-Clause "New" or "Revised" License
316 stars 149 forks source link

Do not crash on invalid EXPORTER_CLASSES settings when using FORM_DESIGN... #61

Closed quinox closed 10 years ago

quinox commented 11 years ago

...ER_WIDGET_CLASSES

Currently you cannot use FORM_DESIGNER_WIDGET_CLASSES inside your own settings file because this information is also used to overwrite the EXPORTER_CLASSES.

I fixed it by using a separate setting, FORM_DESIGNER_EXPORTER_CLASSES, for overwriting the EXPORTER_CLASSES variable.