I want to override delete()
=======================================
from django.db import models

class Person(models.Model):
    first_name = models.CharField(maxlength=20)
    last_name = models.CharField(maxlength=20)

    def delete(self):
        if ( A ):
            super(Person, self).delete() # Call the "real" delete()
method
        else :
            pass
=======================================

This stopped user from deleting some Persons matching certain condition
through Admin App Interface.

But how can I give some information to user that the delete is not
allowed?
By the codes above, the user just see that the delete was done!


--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to