Re: trying to create allauth SignupForm subclass for customization....

2017-09-01 Thread Alexander Joseph
Thanks Melvyn! On Thu, Aug 31, 2017 at 9:44 AM, Melvyn Sopacua wrote: > The answer lies in the fact that you are getting a Django configuration > exception and not an ImportError. > > The solution: https://github.com/pennersr/django-allauth/issues/826 > > The reason: https://github.com/pennersr/

Re: trying to create allauth SignupForm subclass for customization....

2017-08-31 Thread Melvyn Sopacua
The answer lies in the fact that you are getting a Django configuration exception and not an ImportError. The solution: https://github.com/pennersr/django-allauth/issues/826 The reason: https://github.com/pennersr/django-allauth/blob/master/allauth/account/forms.py#L197 So, there is an import lo

trying to create allauth SignupForm subclass for customization....

2017-08-28 Thread Alexander Joseph
Hello, I'm trying to add some additional fields to the allauth signup form (first_name and last_name). I'm thinking the best way to do this is to create a allauth SignupForm subclass and add my own fields (very new to django so please let me know if I'm going about this wrong) I added ACCOUNT_