Re: Original path associated with an InMemoryUploadedFile

2009-11-05 Thread Margie Roginski
Yeah, that makes sense. Thanks! Margie On Nov 5, 5:21 pm, Karen Tracey wrote: > On Thu, Nov 5, 2009 at 6:53 PM, Margie Roginski > wrote: > > > > > > > In my app, my user inputs one more more attachments and on the server > > side I am successfully getting them via code like this: > > >      

Re: Original path associated with an InMemoryUploadedFile

2009-11-05 Thread Karen Tracey
On Thu, Nov 5, 2009 at 6:53 PM, Margie Roginski wrote: > > In my app, my user inputs one more more attachments and on the server > side I am successfully getting them via code like this: > >for file in request.FILES.getlist('attachment'): >a = Attachment( >

Original path associated with an InMemoryUploadedFile

2009-11-05 Thread Margie Roginski
In my app, my user inputs one more more attachments and on the server side I am successfully getting them via code like this: for file in request.FILES.getlist('attachment'): a = Attachment( filename = filename, m