class Genre(models.Model): name = models.CharField( maxlength=64, unique=True ) artists = models.ManyToManyField( 'Artist', null=True, blank=True )
class Admin: pass def __str__(self): return self.name class Artist(models.Model): name = models.CharField( maxlength=128, unique=True, db_index=True ) genres = models.ManyToManyField( Genre ) class Admin: pass def __str__(self): return self.name With this model, now I can create the genres, and artists related with genres. When I select an artist, the related genres are seen. But when I select an genre, it shows all artists. Is possible show only artists related to each genre? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---