1 2 3 4 5 6 7 8 9 10 11 | from django.db.models.signals import pre_save
class Receiver(object):
def __init__(self):
...
pre_save.connect(self)
def __call__(self, sender, instance, **kwargs):
...
receiver = Receiver()
|
More like this
- Callable Class View by zbyte64 5 years ago
- Query lookups using operators by diverman 2 years, 9 months ago
- Generic Recievers For Signals by ericmoritz 4 years, 11 months ago
- Simple Signal to denormalize vote counts in django-voting by ericmoritz 4 years, 7 months ago
- Signal to post new saved objects to Twitter by arthurfurlan 4 years, 2 months ago
Comments