This is my forms.py:
class UploadImageForm(forms.ModelForm): class Meta: model = UserImages fields = [\'photo\']
and this i
Probably you have forgotten save a file:
im.save(file + ".thumbnail", "JPEG")
See http://effbot.org/imagingbook/image.htm#examples