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,
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
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