Top "Django-signals" questions

Django signals allow listeners to be registered for events within the framework.

django-signals vs triggers?

I read about django signals (http://docs.djangoproject.com/en/dev/topics/signals/), but as far as I understand, signals …

sql django triggers django-signals
Disconnect signals for models and reconnect in django

I need make a save with a model but i need disconnect some receivers of the signals before save it. …

django django-signals
Django accessing ManyToMany fields from post_save signal

I have a Django model and I want to modify the object permissions on or just after save. I have …

django django-models django-signals
Want to disable signals in Django testing

So I have various signals and handlers which are sent across apps. However, when I perform tests / go into 'testing …

django django-testing django-signals
Redirect User to another url with django-allauth log in signal

I am using Django-allauth for my login/signup related stuff, so when a user signs up(first time) into my …

django django-signals django-allauth
Issue with ManyToMany Relationships not updating immediately after save

I'm having issues with ManytoMany Relationships that are not updating in a model when I save it (via the admin) …

django django-admin django-orm django-signals
Django pre_save signal does not work

I tested the "pre_save" signal of Django in the following ways, but cannot catch the signal in either of …

python django django-signals
Using Django's m2m_changed to modify what is being saved pre_add

I am not very familiar with Django's signals and could use some help. How do I modified the pk_set …

python django django-signals django-orm m2m
post_save signal isn't called

I've already read all related questions. I have two Django projects, and signals work fine in one, but do not …

python django django-models django-signals
Django Signals: using update_field as condition

Can someone help me understand the update_field argument for Django signals? According to the docs: update_fields: The set …

python django django-models django-signals