Re: Django admin photo upload

2010-11-29 Thread Kenneth Gonsalves
On Mon, 2010-11-29 at 17:17 -0200, Andre Terra wrote: > For anyone else who's interested, I've heard great things about > sorl-thumbnail too, haven't used it myself. > > I hope all is fine with easy_thumbnail. easy_thumbnail is one of the forks from sorl-thumbnail which is retired after doing ye

Re: Django admin photo upload

2010-11-29 Thread Andre Terra
For anyone else who's interested, I've heard great things about sorl-thumbnail too, haven't used it myself. I hope all is fine with easy_thumbnail. Regards, Andre Terra On Mon, Nov 29, 2010 at 10:39, Sithembewena Lloyd Dube wrote: > @Kenneth, thanks again. easy_thumbnail cuts it just fine. > >

Re: Django admin photo upload

2010-11-29 Thread Sithembewena Lloyd Dube
@Kenneth, thanks again. easy_thumbnail cuts it just fine. Regards, Lloyd On Mon, Nov 29, 2010 at 1:01 PM, Sithembewena Lloyd Dube wrote: > @ Venkatraman, and @kenneth - thanks gentlemen. I am trying out > easy_thumbnail as it looks light enough for my needs. django-photologue > looks great too,

Re: Django admin photo upload

2010-11-29 Thread Sithembewena Lloyd Dube
@ Venkatraman, and @kenneth - thanks gentlemen. I am trying out easy_thumbnail as it looks light enough for my needs. django-photologue looks great too, although I suspect it is a much more full-fledged solution? I will look at it if need be. Regards, Lloyd On Mon, Nov 29, 2010 at 12:15 PM, Venka

Re: Django admin photo upload

2010-11-29 Thread Venkatraman S
On Mon, Nov 29, 2010 at 3:37 PM, Kenneth Gonsalves wrote: > On Mon, 2010-11-29 at 15:24 +0530, Venkatraman S wrote: > > Have a look at django-photologue. > > is it still maintained? > Not sure. But the code is a good one to start off for the OP and get some ideas on how images and thumbnails can

Re: Django admin photo upload

2010-11-29 Thread Kenneth Gonsalves
On Mon, 2010-11-29 at 11:52 +0200, Sithembewena Lloyd Dube wrote: > class PhotoTest(models.Model): > test_name = models.CharField(max_length=50) > photo = models.ImageField(upload_to='testphotos', blank=True) > thumbnail = models.ImageField(upload_to='thumbnails', blank=True) > > I

Re: Django admin photo upload

2010-11-29 Thread Kenneth Gonsalves
On Mon, 2010-11-29 at 15:24 +0530, Venkatraman S wrote: > Have a look at django-photologue. is it still maintained? -- regards Kenneth Gonsalves -- 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...@

Re: Django admin photo upload

2010-11-29 Thread Venkatraman S
Have a look at django-photologue. -V- -- 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.

Django admin photo upload

2010-11-29 Thread Sithembewena Lloyd Dube
Hi all, So, I am back once more. I am having headaches with a simple file upload in the Django admin. I have a simple model as follows (partial): class PhotoTest(models.Model): test_name = models.CharField(max_length=50) photo = models.ImageField(upload_to='testphotos', blank=True)