We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Django-2-by-Example/Chapter06/bookmarks/images/apps.py
The signal module has to be imported in AppConfig.__init__() method, not AppConfig.ready() method. Otherwise, the m2m_changed signal is not triggered.
AppConfig.__init__()
AppConfig.ready()
Here is Django official documentation, https://docs.djangoproject.com/en/2.0/ref/signals/#class-prepared
The text was updated successfully, but these errors were encountered:
Thank you namwoo-andreea for the information. We will update the same on our website.
Sorry, something went wrong.
Merge pull request #1 from Rahimz/Rahimz-minor-bug-ch-1
673ac99
Update list.html
praju89
No branches or pull requests
Django-2-by-Example/Chapter06/bookmarks/images/apps.py
The signal module has to be imported in
AppConfig.__init__()
method, notAppConfig.ready()
method. Otherwise, the m2m_changed signal is not triggered.Here is Django official documentation,
https://docs.djangoproject.com/en/2.0/ref/signals/#class-prepared
The text was updated successfully, but these errors were encountered: