Perfect. I google'd AUTH_PROFILE_MODULE and found a nice writeup: http://www.b-list.org/weblog/2006/06/06/django-tips-extending-user-model
Looks like that will suit my needs. Thanks On Aug 3, 7:56 am, daev <[EMAIL PROTECTED]> wrote: > You can create Profile model that can have all additional fields. Then > connect it in settings.py to User model with AUTH_PROFILE_MODULE = > "profiles.Profile". And you can get per user profile like this: > user = User.objects.get( username = "foobar" ) > profile = user.get_profile() --~--~---------~--~----~------------~-------~--~----~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---