AUTH_USER_MODEL error solved in EDIT3. Passwords still will not save on user creation via form.
I\'m using Django 1.5 playing around wi
Ok there were three issues here for me, so I'm going to address all of them since I am pretty sure the first two will come up for someone else.
Manager isn't available; User has been swapped for 'poker.PokerUser'This was due to using but not recreating the UserCreationForm. When using custom models in 1.5, some model forms are available out of the box but this one must be recreated. See here for the docs.
The Manager isn't available; User has been swapped for 'poker.PokerUser'While I had AUTH_USER_MODEL = 'poker.PokerUser' set in my settings.py, I was calling get_user_model() from the poker.models location. You must call get_user_model() from a different location. Moving my form to registration.forms and calling get_user_model() from there worked correctly.
This was just a brain fart on my end. In my UserRegistration model I was manipulating various fields from the form. When I passed those fields back to UserCreationForm for the save() method, I was not passing the password fields with it. Woops!