Russ, thanks a lot for your reply. I have tried the `edit_inline' thing, and it works fine in the admin interface.
In fact, what I want to do is to achieve that but not only in the admin views but _also_ in my public intefrace views... And that's where i have this problem. I'm willing to write some javascript if necessary, but i think the first part would be to be able to upload 2 different Images in the same view! I i do: for f in request.FILES.getlist('picture_file'): print('---------') myMVD = {'picture_file': f} I see this in the output: --------- {'picture_file': {'content': '\x89PNG\r\n\x1a\n\x00\x00\........\x00IEND\xaeB`\x82', 'content-type': 'image/png', 'filename': 'back.png'}} --------- {'picture_file': {'content': '\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00.........x00\x00\x00IEND\xaeB`\x82', 'content-type': 'image/png', 'filename': 'binary.png'}} Is there anyway that i can catch those and pass them to django Manipulator's do_html2python() and save() methods? Thank you so much for your help! --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---