Re: Populating list_display with data from two models?

2009-03-29 Thread caliman
On 27 Feb, 01:56, Jamie Richard Wilson wrote: > I've extended the User model with a UserPofile model and have inline > editing working. Setup is something like this: > > class UserProfile(models.Model): >     user = models.ForeignKey( >        User, >        unique=True, >    

Populating list_display with data from two models?

2009-02-26 Thread Jamie Richard Wilson
I've extended the User model with a UserPofile model and have inline editing working. Setup is something like this: class UserProfile(models.Model): user = models.ForeignKey( User, unique=True, ) position = models.ForeignKey(Position) ...etc... I need a