I've got a simple form using the update_object generic view that seems
to work great -- expect for the two image fields. They both work fine
in the admin -- I can easily upload images to them. But, in the generic
view form, images don't upload. I can select an image and submit the
form just fine. The form returns no errors, but the image doesn't get
uploaded. The rest of the form submits just fine.

Here are the relevant bits from my model:

    avatar = models.ImageField(upload_to='img/avatars/', blank=True,
help_text="Should be 75px wide")
    image = models.ImageField(upload_to='img/users/', blank=True,
help_text="Should be 200px wide")

And in my templates:

                        {% if form.avatar.errors %}
                                <p class="error">{{ form.avatar.errors|join:", 
"}}</p>
                        {% endif %}
                        <label for="id_avatar">Avatar</label>
                        {{ form.avatar }}
                        {{ form.avatar_file }}

Any clues? 

Thanks in advance!

Jeff


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to