I am running a test django server on aws and I just installed django-userena and when I try to signup a user upon clicking submit, I get the following message:
I'm late, but I ran into the same issue with django v 1.11.
The issue was that I was rebuilding a model outside the normal def() and in a form() [I use the models for a choice] The traceback should have the .py file listed
e.g.
File "filepath/views.py", line 67, in
some_variable = some_model.objects.get(name ='name')
So I had to comment it out to rebuild my migrations