Also, make sure you import ImageField at the top:

from django.db.models import ImageField

And, do you have the PIL downloaded??
Did you import Image?

On Jul 16, 1:42 pm, Molly <[EMAIL PROTECTED]> wrote:
> Dane:
>
> You need to make a path where your images will go.
>
> For example:
>
> avatar = forms.ImageField(upload_to='media/images', required=False)
>
> **I'm not sure what that label='Change Profile Image' is that you are
> doing..
>
> Also, your MEDIA_URL needs to be:
>
> MEDIA_URL='/media/'
>
> Hope that makes sense..
>
> Molly
>
> On Jul 16, 12:21 pm, "Dane Hesseldahl" <[EMAIL PROTECTED]>
> wrote:
>
> > Hey guys,
> > I can't seem to find a good resource for the best way to handle this, so I
> > thought I'd ask.
>
> > What is the best way to handle an upload through an ImageField in a custom
> > form?
>
> > For example:
> > class ProfileForm(forms.Form):
> >     first_name         = forms.CharField(label='First Name', required=True)
> >     last_name         = forms.CharField(label='Last Name', required=True)
> >     email             = forms.EmailField(label='Email Address',
> > required=True)
> >     avatar             = forms.ImageField(label='Change Profile Image',
> > required=False )
>
> > How do I get to the image when the avatar field has an image uploaded
> > through it?
>
> > Thanks in advance.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to