ok some news thanks to #django
my model didnt specifie that the image field was needed but the
manipulator did.
so i updated the line to :
formfields.ImageUploadField(field_name="image_file"),
now when all recquired fields are present i got an error from django
Exception Type: NotImplementedError
Exception Location:
/usr/lib/python2.4/site-packages/Django-0.91-py2.4.egg/django/core/formfields.py
in save, line 82
which when we look at the file happen there :
def save(self, new_data):
"Saves the changes and returns the new object"
# changes is a dictionary-like object keyed by field_name
raise NotImplementedError
So do i ahve to define my own def save(self, new_data): somewhere ?
in my model ? any link ?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---