Best practice for uploading and image file with Django Forms (Django 1.0) - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T17:28:08Z http://stackoverflow.com/feeds/question/1078786 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1078786/best-practice-for-uploading-and-image-file-with-django-forms-django-1-0 1 Best practice for uploading and image file with Django Forms (Django 1.0) Alex Santos 2009-07-03T10:34:19Z 2009-08-19T13:50:12Z <p>Hi friends, could you please help me to get image upload working on a view with django forms</p> <p>Models.py</p> <pre><code>class User_Profile(models.Model): user = models.OneToOneField(User, unique=True, related_name='profile') photo = models.ImageField(upload_to = 'profiles/', null=True, blank=True) </code></pre> <p>Forms.py</p> <pre><code>class ProfileForm(forms.ModelForm): class Meta: model = User_Profile exclude = ('user') </code></pre> <p>Views.py</p> <pre><code> if request.method == 'POST': profile_form = ProfileForm(request.POST, instance=request.user.profile) if profile_form.is_valid(): profile_form.save() return HttpResponseRedirect('/panel/correct/') else: profile_form = ProfileForm(instance=request.user.profile) </code></pre> <p>My html form already contains enctype="multipart/form-data"</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1078786/best-practice-for-uploading-and-image-file-with-django-forms-django-1-0/1078831#1078831 2 Answer by michuk for Best practice for uploading and image file with Django Forms (Django 1.0) michuk 2009-07-03T10:53:05Z 2009-07-03T10:53:05Z <p>Why not use the <a href="http://github.com/ericflo/django-avatar/tree/master" rel="nofollow">django-avatar</a> project (I'm assuming you are thinking of adding user avatars to your project, based on the example)? </p> <p>They have a pretty neat solution with an extra tag that resizes the image before displaying it first time. You store the original image and define the image sizes that you wish to accept on the website and the rest is done automagically for you.</p> http://stackoverflow.com/questions/1078786/best-practice-for-uploading-and-image-file-with-django-forms-django-1-0/1078888#1078888 5 Answer by Daniel Roseman for Best practice for uploading and image file with Django Forms (Django 1.0) Daniel Roseman 2009-07-03T11:11:46Z 2009-07-03T11:11:46Z <p>You don't seem to be <a href="http://docs.djangoproject.com/en/dev/ref/forms/api/#binding-uploaded-files" rel="nofollow">binding the file data to the form</a>.</p> <pre><code>profile_form = ProfileForm(request.POST, request.FILES, instance=request.user.profile) </code></pre> http://stackoverflow.com/questions/1078786/best-practice-for-uploading-and-image-file-with-django-forms-django-1-0/1080344#1080344 0 Answer by drozzy for Best practice for uploading and image file with Django Forms (Django 1.0) drozzy 2009-07-03T18:02:26Z 2009-07-03T18:02:26Z <p>This is just a matter of following the <a href="http://docs.djangoproject.com/en/1.0/topics/http/file-uploads/#basic-file-uploads" rel="nofollow">docs</a>.</p> <p>You are not using the correct form initialization in your post. In particular you are missing <em>request.FILES</em> parameter:</p> <pre><code> form = ProfileForm(request.POST, request.FILES) </code></pre> <p>after the above the uploaded file can be retrieved from the FILES array:</p> <pre><code> photo_file = request.FILES['photo'] </code></pre>