Looking for links to solutions to the following situation:

class Book(models.Model):
   ...

class Author(model.Models):
   book = models.ForeignKey(Book)
   ...

I'd like to design a form for creating books that allows multiple authors to
be added before the book form is submitted.

Clearly some javascript will be needed for the dynamic form, but I'm
anticipating this being a rather common issue, so I am looking for links to
existing solutions, or solution to similar problems for examples.

Thanks!
-n

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to