Re: Djangopeople.net status

2011-07-15 Thread Subhranath Chunder
Hi, I'm very much interested to help. Please tell me, from where and how to get started. Thanks, Subhranath Chunder. On Tue, Jul 12, 2011 at 5:42 AM, Russell Keith-Magee < russ...@keith-magee.com> wrote: > On Tue, Jul 12, 2011 at 7:00 AM, Bruno ReniƩ wrote: > > H

Re: User model being included by default

2011-01-07 Thread Subhranath Chunder
backend in your application, I think you'll probably want to specify and use it in your settings.py as something probably like the following: AUTHENTICATION_BACKENDS = ( 'yourapp.backends.YourCustomBackend', ) So, you'll also need to have the custom backend written too. Thanks