User Alex Santos - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T02:40:06Z http://stackoverflow.com/feeds/user/132746 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/1078888#1078888 Comment by Alex Santos on Best practice for uploading and image file with Django Forms (Django 1.0) Alex Santos 2009-07-04T19:17:30Z 2009-07-04T19:17:30Z Thanks, that was the problem... This is the first time I use Forms in Django... (not using django since 0.96 without newforms)