first think, then write -> problem solved! Am 24.02.2006 um 15:37 schrieb va:patrick.kranzlmueller:
> > i have 2 tables, films and stars, each with lots of entries (>10000). > each film has a list of cast-members which relate to the table stars. > > i´m trying to do that relation using M2M with an intermediary table > to add a job for every star (like actor, director, camera ...). > > class Cast(meta.Model): > film = meta.ForeignKey(Film, edit_inline=meta.TABULAR, > num_in_admin=20) > star = meta.ForeignKey(Star, raw_id_admin=True) > job = meta.CharField(Job) > > with using the above model, i only get ONE input field for the cast- > members, which probably occurs because raw_id_admin doesn´t work with > edit_inline. > > any suggestions on how to solve that problem? > > thanks, > patrick > --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

