how can I delete all user data when deleting a user profile on Django using signals.py? I am trying to delete a custom user model using Django and when the profile is deleted I want to delete all data of that user using signals.py how can I create it? I want to delete blogs of the user-written when the profile
Tag: django-signals
How can i implement Notifications system in django
I created an app where user’s can post a question and get answers from others users. Now I want to implement a notification system, so that when a user answer a question, the author of that question will receive notification. Like social media notifications. The home templates: the models: The views: the home page view: the urls Answer Here is