On Fri, 2009-05-15 at 19:53 -0400, Joshua Williams wrote: > When trying to access a user defined profile, using get_profile, I > am > getting an error when accessing the profile for a user. Just so I > have my bases covered, here is my model class: > > class UserDetail(models.Model): > Position = models.ManyToManyField(Position, blank=True) > pkUser = models.ForeignKey(User, unique=True)
You must name your ForeignKey field 'user' instead of 'pkUser'. I don't see that in the doc, but it is clear in get_profile(). sdc --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---