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
Source:stackexchange.com
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