Re: Django auth customing error

2014-05-31 Thread Kelvin Wong
In your helpdesk app you have leftover references to auth.User. Replace all of them with something like this: user = models.ForeignKey(settings.AUTH_USER_MODEL) K On Saturday, May 31, 2014 6:25:28 AM UTC-7, Jackie wrote: > > I want to custom the django auth app, since the default auth app can

Django auth customing error

2014-05-31 Thread Jackie
I want to custom the django auth app, since the default auth app can not meet our project's requierment. Then I figure it out on my own by checking the django document at here. https://docs.djangoproject.com/en/1.6/topics/auth/customizing/#a-full-example. I tried to do that example exactly. Fina