django-mongoforms
django-mongoforms copied to clipboard
A Django-ModelForm clone for mongoengine
django version 1.8.1 mongoforms/forms.py in MongoForm, line 57 ``` python def __init__(self, data=None, files=None, auto_id='id_%s', prefix=None, initial=None, error_class=forms.util.ErrorList, label_suffix=':', empty_permitted=False, instance=None): ``` `forms.utils.ErrorList`
Adding support to ListField except when field type is an EmbeddedDocument.
I have a field with unique=True, but mongoforms does not seems to ignore that.