Re: Best practices to create multiple users profiles using Auth

2011-09-28 Thread Santiago Basulto
Thank you Ryan. I'll read it. Seems interesting. On Sep 27, 10:30 am, ryan west wrote: > I actually just wrote a blog post about why I think extending > contrib.auth.models.User is a better solution to using a OneToOneField > (or a ForeignKey), you can find it here: > > http://ryanwest.info/blog/

Re: Best practices to create multiple users profiles using Auth

2011-09-27 Thread ryan west
I actually just wrote a blog post about why I think extending contrib.auth.models.User is a better solution to using a OneToOneField (or a ForeignKey), you can find it here: http://ryanwest.info/blog/2011/django-tip-5-extending-contrib-auth-models-user/ Please let me know what you think. Regards

Best practices to create multiple users profiles using Auth

2011-09-27 Thread Santiago Basulto
Hello friends, i'm new with django. I've something to ask you. I'm building a website similar to eBay where i've different "kinds" of users. These are: CustomerUser and SellerUser. Both of them has different data to be saved. While reading docs and django book i noted the UserProfile "trick" (ht