Re: Extending Group for a GroupProfile

2009-01-08 Thread Malcolm Tredinnick
On Thu, 2009-01-08 at 19:46 -0800, Cortland Klein wrote: > Hi. I'm planning on extending Group for a GroupProfile. I noticed that > the recommended way to extend User is to create a UserProfile with a > ForeignKey(User, unique=True) instead of a OneToOneField[a]. > > 1. Why is

Extending Group for a GroupProfile

2009-01-08 Thread Cortland Klein
Hi. I'm planning on extending Group for a GroupProfile. I noticed that the recommended way to extend User is to create a UserProfile with a ForeignKey(User, unique=True) instead of a OneToOneField[a]. 1. Why is it recommended to use a ForeignKey(unique=True) from a UserProfile to User