Re: Admin for proxy model for custom User

2013-05-28 Thread Andres Osinski
Sorry, it was my intention but had the wrong autocomplete. My apologies. On Tue, May 28, 2013 at 10:00 PM, Angus Turner wrote: > You'd be better off posting this to django-users as this list is for the > development of django itself. > > Thanks > Angus Turner > angusisf...@gmail.com > > > On Wed,

Re: Admin for proxy model for custom User

2013-05-28 Thread Angus Turner
You'd be better off posting this to django-users as this list is for the development of django itself. Thanks Angus Turner angusisf...@gmail.com On Wed, May 29, 2013 at 10:33 AM, Andres Osinski wrote: > Hi everyone, I've created a custom User model and reated a proxy for > it, like this: > > cl

Admin for proxy model for custom User

2013-05-28 Thread Andres Osinski
Hi everyone, I've created a custom User model and reated a proxy for it, like this: class User(AbstractUser): USER_KINDS = ( ('d', 'doctor'), ('p', 'patient') ) kind = models.CharField(max_length=2, choices=USER_KINDS) class DoctorManager(BaseUserManager): def get