Has anyone used the patch from this ticket #7623?
http://code.djangoproject.com/ticket/7623
Does it work well? Is there a better way?
I've got the same problem the submitter has except I was hoping to extend
the auth.User class so I'd still have all of the user methods available in
the new user type.
from django.contrib.auth.models import User
class Customer(User):
#user's customer profile
phone = models.CharField(max_length=255)
referrer = models.TextField()
> def __unicode__(self):
return "%s's customer profile" % self.get_full_name()
I was hoping to make a few dfferen't profile types and have all the user
fields available in the admin without having to recreate every single one in
an admin class.
-Francis
---
Francis Gulotta
[email protected]
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en.