I'm about to do my umpteenth Django app and I'm just wondering if there is a new standard (better) way to extend the User model. I've used this method
http://www.b-list.org/weblog/2006/jun/06/django-tips-extending-user-model/ And a few others, but all of them keep the User and Profile objects separate which consistently adds a lot of extra code for me. The largest issue is a command like this User.objects.all().select_related() Results in an N+1 query when you need the profile information. You could base everything off of your profile Profile.objects.all().select_related() But it seems weird to base everything around the object that isn't used for authentication. Is that what most people do? Thanks --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---