Guys,
I have the following classes.
class Team(models.Model):
name = models.CharField(core=True,
max_length=255,unique=True)
class Traders(Client):
teams = models.ManyToManyField(Team,blank=True,
filter_interface=models.HORIZONTAL, verbose_name="Trader Teams")
I have a filter interface to select teams associated with traders on
the trader change page on the admin site. On the team change page I
would like a similar filter interface to view/change traders
associated with that team.
Is that possible, or something that I would have to add. If so, do
you know where I need to make this modification?
Many thanks.
- Lee.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected]
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
-~----------~----~----~----~------~----~------~--~---