Let's say I have a model like this: class Book(models.Model): title = models.CharField(max_length=100) authors = models.ManyToManyField(Author) pulisher = models.ForeignKey(Publisher, blank=True, null=True)
I want to generate a form that can be used to edit an existing Book object. In particular, I want the authors field to show up in the form as showing all of the possible authors and I want it to be initialized such that it shows the currently selected authors. I am able to initialize it so that it shows the possible selections, ie: class BookForm(models.Model): def __init__(self, myQueryset, *args, **kwargs): self.fields['authors'].queryset = myQuerySet But I can't figure out how to get the form to reflect the currently selected authors. Can anyone give me a pointer? Thanks, Margie I know how to set the initial --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---