Hi, A profile is like a one to one relation. Since the future of OneToOneField is unknown I heard you should use ForeignKey() with unique=True.
You can modify djangos User model (e.g. in your model file), and give it a property to make the access easier. In this get_myprofile() method, you can create myprofile, if it does not exist up to now. Since you want three different profiles, I would create three properties. I think this is better than one property which returns different model instances. Thomas Am Montag, 28. Januar 2008 21:11 schrieb Chris Pratt: > This question has been asked a few times before, but doesn't seem to > be getting any responses. > > I'm working on a project where we have three types of users, each > requiring vastly different profile models. The AUTH_PROFILE_MODULE > setting, obviously, allows only one profile to be specified. > > One response to this question suggested branching from an intermediate > profile model. Thereby, you could call something like: > > request.user.get_profile().get_for_user() > > and it would return the appropriate profile. This seems like a fair > enough approach, but it's a bit kludgy, and certainly doesn't lend > itself towards DRY code that anyone can manipulate. What happens if > someone comes along later and doesn't know they're supposed to tack on > the extra method call? > > It would be easy enough to rewrite the get_profile() method to pull > the right profile and then monkey patch the User model, but this feels > wrong. > > What would be considered best practice here? > > Thanks, > Chris Pratt --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---