[Django]-Add arguments to Django signals

4👍

pre_save is not a signal that you send, but rather Django emits it by default: changing its arguments is probably very complicated and likely to break things.

On signals you define, you can add all the arguments you want; to see how, look at the docs (kindly linked by @Ignacio).

👤Agos

Leave a comment