Hi all, just to confirm a suspicion I have with using the
'create_object' generic view:

#urls.py
...
    (r'^accepts/photos/$',
'django.views.generic.create_update.create_object',
{'model':photologue.models.Photo}),
...

renders the form A-OK.  However, choosing an image for the file upload
field inevitably results in a 'This field is required.' error message
from form validation.  I know about binding files to a form, a la
here: 
http://docs.djangoproject.com/en/dev/ref/forms/api/#binding-uploaded-files-to-a-form,
but figured the generic view would handle this.  I suspect it isn't,
though.

The obvious solution is to pass the generic view a ModelForm instance
with the correct binding procedure, but I was going for absolute code
minimalism.

Is my intuition correct?

Cheers!
--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to