I want to create a form for entering data and all of its related data, on one form. Here's a simplified model to illustrate:
class Author(meta.Model): name = meta.CharField(maxlength=40) class Book(meta.Model): title = meta.CharField(maxlength=40) authors = meta.ManyToManyField(Author) What I want to do is create a form that lets me enter the book title, and a comma-separated list of author names. The list of author names would then be split on the commas, and if an author name was not in the Author table, it would be inserted. I want the form to work for both create and update. Can someone give me a pointer to info on how to go about this? --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---