On Thu, 2009-02-12 at 20:40 -0500, Chris Czub wrote:
> No, that is the uncleaned data.
> 
> Maybe a more explicit example will help:
> 
> You go to edit an instance of a model that has a field named "title".
> 
> The value of "title" for this particular instance is currently "Test".
> 
> You change the value of "title" from "Test" to "Test123" and click "save".
> 
> How can I get the original value of "title"(that is - "Test", not the
> new value, "Test123") in the clean_title method?

For a ModelForm, any passed in instance is stored in the "instance"
attribute and the "object_data" attribute will be the data from the
attributes. So you could access either of those (probably the latter,
since it will be an empty dictionary if no instance is passed in, thus
easy to separate out that case).

Regards,
Malcolm



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