On Sun, 2009-05-10 at 20:36 -0700, nek4life wrote: > I'm trying to create a record label website and I'm modeling the music > data. I have artists, albums, tracks so far. What I'd like to do is > use the artists model for both individual recording artists and groups > of recording artists.
Probably not a particularly good strategy, since you're attempting to model things of different types with a single object. > I'd like to be able to find any singular artist > or groups of artists by visiting one URL /artists/artist_slug and be > able to view the related artists if there's a artist.artist_set. Any > ideas about how I can achieve this using Django? Keep in mind an > artist could be in more than one band at once, the reason I put > recursive many to many in the title. Why not go down the obvious route and have a ManyToMany field linking Band and Artist? Then a band can contain zero or more artists and artists can be in zero or more bands. You could organise these under a URL structure by using the band id as an identifier for showing the artist or artists from that band, for example. Regards, Malcolm --~--~---------~--~----~------------~-------~--~----~ 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 django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---