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
- Simple Signal to denormalize vote counts in django-voting by ericmoritz 3 years, 4 months ago
- Generic Recievers For Signals by ericmoritz 3 years, 8 months ago
- easy signal registration by aisbaa 4 months, 1 week ago
- auto_now using signals by ddanier 3 years, 7 months ago
- improved getattr template filter by luckystarr 4 years, 5 months ago
Comments