Closed gerbyzation closed 9 years ago
This has little relation to allauth, it does not feature an accounts
app...
Sorry if I'm being ignorant, but to me it seems it does? That the accounts
app is not part of allauth is correct, but there needs to be some app where I define the custom signup form. This error is the direct result of specifying a custom signup form for allauth in settings ( ACCOUNT_SIGNUP_FORM_CLASS = 'apps.accounts.forms.SignUpForm'
), which gives me the impression this has quite a lot to do with allauth. If I'm wrong; please enlighten me
What I meant was that allauth is not the cause here, there is not an issue I can fix. It is not feasible for me to support tracking down project specific issues, therefore I have to close them. What I would do to track this down is start out at the root issue, which does not seem to be the conflicting models exception, but this one:
Unhandled exception in thread started by.wrapper at 0x10a5e0a60> Traceback (most recent call last): File "/Users/gerritneven/.virtualenvs/playerxp-dev/lib/python3.5/site-packages/django/core/urlresolvers.py", line 393, in urlconf_module return self._urlconf_module AttributeError: 'RegexURLResolver' object has no attribute '_urlconf_module' During handling of the above exception, another exception occurred:
Alright, thanks. Due to the errors I was under the impression it was at least related to allauth, but after digging around for a while I finally discovered it doesn't like the relative import of the profile model somehow, absolute import solved it. My bad, and thank you!
Hi,
I want to implement a custom signup form, but when doing so I run into
RuntimeError: Conflicting 'user_groups' models in application 'accounts': <class 'accounts.models.User_groups'> and <class 'apps.accounts.models.User_groups'>.
. I'm using a custom user model and user profile, but should all be fairly straight forward, so I'm not sure what's causing the issue here?Thanks!
The full traceback: