Re: Inheriting from auth.models.User

2008-07-01 Thread Rob Hudson
On Jun 30, 9:43 pm, Michael Richardson <[EMAIL PROTECTED]> wrote: > > There's a patch for this -http://code.djangoproject.com/ticket/3011 Dangit! Michael beat me to it! :) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

Re: Inheriting from auth.models.User

2008-06-30 Thread Michael Richardson
> Really? I was sort of hoping with model inheritance and newforms-admin I > would finally be able to get rid of user profile.  It was a useful hack > but now that there is a general solution the special case should be > disfavored, no? There's a patch for this -

Re: Inheriting from auth.models.User

2008-06-30 Thread Norman Harman
Ayaz Ahmed Khan wrote: > bhunter wrote: >> This should be a simple question. I'd like an Employee model. First >> name, last name, username, password--basically all the same stuff >> that's already in django.contrib.auth.models.User. Maybe I want some >> other things like salary, too. So, it

Re: Inheriting from auth.models.User

2008-06-30 Thread [EMAIL PROTECTED]
Just a note, model inheritance isn't current supported in the Admin(although it's coming). On Jun 30, 12:53 pm, bhunter <[EMAIL PROTECTED]> wrote: > Amazing!  5 minutes and dead-on answer. > Thanks.  The Django community rocks. > > PS Sorry for the RTFM question. > > On Jun 30, 1:29 pm, Ayaz

Re: Inheriting from auth.models.User

2008-06-30 Thread bhunter
Amazing! 5 minutes and dead-on answer. Thanks. The Django community rocks. PS Sorry for the RTFM question. On Jun 30, 1:29 pm, Ayaz Ahmed Khan <[EMAIL PROTECTED]> wrote: > bhunter wrote: > > This should be a simple question.  I'd like an Employee model.  First > > name, last name, username,

Re: Inheriting from auth.models.User

2008-06-30 Thread Ayaz Ahmed Khan
bhunter wrote: > This should be a simple question. I'd like an Employee model. First > name, last name, username, password--basically all the same stuff > that's already in django.contrib.auth.models.User. Maybe I want some > other things like salary, too. So, it makes sense that I should

Inheriting from auth.models.User

2008-06-30 Thread bhunter
This should be a simple question. I'd like an Employee model. First name, last name, username, password--basically all the same stuff that's already in django.contrib.auth.models.User. Maybe I want some other things like salary, too. So, it makes sense that I should just inherit from this