hi,
 The problem was solved... by adding a few lines as follows...

----------------------------------------------------------------------
if request.POST:
        new_data = request.POST.copy()
        new_data.update(request.FILES)  # This has to be added

        errors = manipulator.get_validation_errors(new_data)
        if not errors:
            new_message = manipulator.save(new_data)
----------------------------------------------------------------------

Cheers
Dhanya


--~--~---------~--~----~------------~-------~--~----~
 You received this message because you are subscribed to the Google Groups 
"Django developers" group.
To post to this group, send email to django-developers@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-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to