Re: Custom User class -> createsuperuser asks for Username twice

2012-10-19 Thread Chris Pagnutti
Right on. Thanks Russ. On Thursday, October 18, 2012 3:38:05 PM UTC-4, Chris Pagnutti wrote: > > Hi. I'm just trying out the new way to create a custom User class by > extending the AbstractBaseUser class. I essentially just copied the > AbstractUser and UserManager classes from auth.models

Re: Custom User class -> createsuperuser asks for Username twice

2012-10-18 Thread Russell Keith-Magee
On Fri, Oct 19, 2012 at 3:50 AM, Chris Pagnutti wrote: > Blarghh! Ok, I'm serious that I spent considerable time Googling, poring > over the contrib.auth and core files and otherwise staring at my screen to > try to fix this on my own before posting. But of course I

Re: Custom User class -> createsuperuser asks for Username twice

2012-10-18 Thread Chris Pagnutti
Blarghh! Ok, I'm serious that I spent considerable time Googling, poring over the contrib.auth and core files and otherwise staring at my screen to try to fix this on my own before posting. But of course I figure it out two minutes after I wasted the time of anyone who actually read this

Custom User class -> createsuperuser asks for Username twice

2012-10-18 Thread Chris Pagnutti
Hi. I'm just trying out the new way to create a custom User class by extending the AbstractBaseUser class. I essentially just copied the AbstractUser and UserManager classes from auth.models and customized the fields the way I want 'em. I also set AUTH_USER_MODEL in settings appropriately.