Maniac a écrit :
> I remember my struggles with such an issue, though I'm not sure it's the > same. > > The form data should include not only 'image' field but also > 'image_file' field. This is rendered by FormWrapper as a file upload > control and only then file's contents will be in a POST data (or > actually in request.FILES) visible to a manipulator. Yes it was missing, I put this in my form : {{ form.image_file }}{{ form.image }} But still don't work, but i take a look in the admin a realize that I have forget the enctype="multipart/form-data" trick in the form. That works well now. Such a shame that I have lost days with this ... Thx for your support