Django - Signals
Which of the following is the correct way to register a receiver function for Django's
post_save signal using the decorator syntax?post_save signal using the decorator syntax?@receiver decorator requires the signal and optionally the sender.sender, instance, and **kwargs.@receiver(post_save, sender=MyModel) and proper function signature.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions