Hi All,
I am working on a Django application on Google app engine (using app engine patch). In my project I have to customize the way the delete functionality works in the admin panel. I have defined my own functions for all the models that I have created and its working fine.
Now the issue is to customize the delete functionality for the User model.
Can someone please let me know how can I customize the way user deletion is done by default ? What I need is, when some user is deleted, all the other records where User is defined as a ReferenceProperty should Reference to an anonymous user instead of getting a ReferenceProperty not found error message.
Please suggest if there is some method which needs to be customized without making any changes to how the authentication system is working.
Thanks in advance.