Re: trouble w/images

2009-06-20 Thread django_jedi
Thanks Antoni, for the link to your code. I'll check it out. On Jun 20, 9:33 am, Antoni Aloy wrote: > Look at: > > http://code.google.com/p/appfusedjango/ > > You'll find some examples of uploading images both as an application > and batch mode. > > 2009/6/20 django_jedi

Re: trouble w/images

2009-06-20 Thread Antoni Aloy
Look at: http://code.google.com/p/appfusedjango/ You'll find some examples of uploading images both as an application and batch mode. 2009/6/20 django_jedi : > > Hi Folks, > > I'm having a devil of a time trying to get image uploading to work. > What I'd like to do is

trouble w/images

2009-06-20 Thread django_jedi
Hi Folks, I'm having a devil of a time trying to get image uploading to work. What I'd like to do is simply upload and image. This works with: my_object = ImageTest.objects.create() ...but if not with: my_object = ImageTest.objects.get_or_create(user_id=7, image=imagepath) Any ideas?