I have a problem on overriding the save() method.
my new save is:
class ClassName:
def save(self):
self.title = self.title.title()
super(ClassName, self).save()
when admin site uses this save(), I get the non-unique exception at
django/python level but I hope to see a red box in the admin. How can
I do that?
--~--~---------~--~----~------------~-------~--~----~
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?hl=en
-~----------~----~----~----~------~----~------~--~---