i have 3 models Team, Player and Fixture.
Fixture
class Fixture(models.Model):
"""(Fixture description)"""
home = models.ForeignKey(Team, related_name="home_games")
away = models.ForeignKey(Team, related_name="away_games")
home_players = models.ManyToManyField(Player, related_name="home_games")
away_players = models.ManyToManyField(Player, related_name="away_games")
class Player(models.Model):
"""(Player description)"""
surname = models.CharField(blank=True, max_length=255)
forename = models.CharField(blank=True, max_length=255)
number = models.IntegerField(blank=True, null=True)
team = models.ForeignKey(Team, related_name="players")
class Team(models.Model):
"""(Team description)"""
name = models.CharField(blank=True, max_length=255)
location = models.CharField(blank=True, max_length=255)
As you can see a player belongs to a team. The Fixture as a home_team, away_team, home_players and away_players. Now, within the admin, under fixtures the "home_players" is listing ALL players, from all teams.
I'm kind of new to the django admin application, but how would i just show the home_players belonging to the home_team and the away_players belonging to the away_teams?
Thanks
admin.site.register(Fixture)– dotty Jun 18 '11 at 14:37