User Alex Santos - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T02:40:06Zhttp://stackoverflow.com/feeds/user/132746http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1078786/best-practice-for-uploading-and-image-file-with-django-forms-django-1-01Best practice for uploading and image file with Django Forms (Django 1.0)Alex Santos2009-07-03T10:34:19Z2009-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#1078888Comment by Alex Santos on Best practice for uploading and image file with Django Forms (Django 1.0)Alex Santos2009-07-04T19:17:30Z2009-07-04T19:17:30ZThanks, that was the problem... This is the first time I use Forms in Django... (not using django since 0.96 without newforms)