Re: Name in admin for Foreign Key's

2005-09-08 Thread Milton Waddams
perfect, thanks :)On 9/8/05, Robert Wittams <[EMAIL PROTECTED]> wrote: I think this is a bug, but you can work around it usingCEO = meta.ForeignKey(User, verbose_name="CEO" )CFO = meta.ForeignKey(User, verbose_name="CFO" )I don't know why the name of the class is used in preference to the name of t

Re: Name in admin for Foreign Key's

2005-09-08 Thread Adrian Holovaty
On 9/8/05, Robert Wittams <[EMAIL PROTECTED]> wrote: > I think this is a bug, but you can work around it using > > CEO = meta.ForeignKey(User, verbose_name="CEO" ) > CFO = meta.ForeignKey(User, verbose_name="CFO" ) > > I don't know why the name of the class is used in preference to the name > of

Re: Name in admin for Foreign Key's

2005-09-08 Thread Robert Wittams
Milton Waddams wrote: > I'm trying to associate multiple users with a team and each user having a > specific role within that team. > > eg. not my situation though easiest way to make it clear what I'm attempting > to achieve... > CEO = meta.ForeignKey(User) > CFO = meta.ForeignKey(User) > > w

Name in admin for Foreign Key's

2005-09-07 Thread Milton Waddams
I'm trying to associate multiple users with a team and each user having a specific role within that team. eg. not my situation though easiest way to make it clear what I'm attempting to achieve... CEO = meta.ForeignKey(User) CFO = meta.ForeignKey(User) when I go to edit this in the admin area I g