On Mar 15, 10:17 pm, Henry Andersen <henr...@gmail.com> wrote: > Thanks for your answer, but I do need a ManyToManyField(). > > In case anyone is curious about the answer, I solved my problem by > overriding my custom admin form's save method. In save(), I checked for the > existence of the file field in self.files; passed self.files to a document > form, which populates a new Document object, returns that (using > commit=False), save it manually so we can get the new primary key, then add > that primary key to Publication's form's documents field > (self.cleaned_data['documents']); then save the whole thing to the database > using super(). Turned out this was lot simpler than I originally thought it > would be, fortunately.
I should've mentioned you can still use inlines for manytomany relations. http://docs.djangoproject.com/en/dev/ref/contrib/admin/#working-with-many-to-many-models If your solution works for you though then obviously stick with it. Peter -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@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.