[Fixed]-What signal to listen to for new Many-To-One relations?

1👍

Connect to post_save of Article, but you have to call add with bulk=False:

new_reporter.article_set.add(new_article, bulk=False)
# will not use update and call save on article instance

Leave a comment