Re: Downloading thumbnails and replacing them with full images

2015-01-24 Thread Fred Stluka
+1 for easy-thumbnails. We use it and it works great. Allows the user to upload images, optionally crop them during the upload, manages the full-size and thumbnail files on the file system with their names in the DB, etc. All automatic and all easy. --Fred -

Re: Downloading thumbnails and replacing them with full images

2015-01-24 Thread Larry Martell
On Fri, Jan 23, 2015 at 7:44 PM, Russell Keith-Magee wrote: > > On Sat, Jan 24, 2015 at 12:20 AM, Larry Martell > wrote: >> >> I have a django app that downloads 100's of images. To increase the >> performance, I want to change it so that it downloads thumbnails, and >> when the user clicks on on

Re: Downloading thumbnails and replacing them with full images

2015-01-23 Thread Russell Keith-Magee
On Sat, Jan 24, 2015 at 12:20 AM, Larry Martell wrote: > I have a django app that downloads 100's of images. To increase the > performance, I want to change it so that it downloads thumbnails, and > when the user clicks on one then download the full image. > > I'm sure I can come up with somethin

Downloading thumbnails and replacing them with full images

2015-01-23 Thread Larry Martell
I have a django app that downloads 100's of images. To increase the performance, I want to change it so that it downloads thumbnails, and when the user clicks on one then download the full image. I'm sure I can come up with something on my own (send an ajax request on click, etc.) but I was wonder