Skip to content
Advertisement

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:

JavaScript

the models:

JavaScript

The views:

JavaScript

the home page view:

JavaScript

the urls

JavaScript

Advertisement

Answer

Here is an outline for a basic notification system in Django:

Model

You need a model to store notifications. Each notification belongs to a user and has content (i.e. a text message). You also need to store whether a message has been read and a timestamp:

JavaScript

Creating a notification

You can then create a new notification for a user when needed, e.g. when another user answers a question you can also create a notification for the question’s owner in the view.

JavaScript

List of notifications

Then you need a page that lists all notifications for the current user. That can be implemented with a standard list view.

The query would look something like this:

JavaScript

You of course also need to define a URL and a template for this new view. We will define the URL name as notifications.

Showing new notifications to users

Finally, you need to inform users about new notifications. This can be done by checking how many unread notifications the current user has and showing a badge on the web badge. This would be part of the index view.

JavaScript

Then on your home page you need a link to a page that shows all notifications and a badge that shows how many unread notifications the current user has. Something like this:

JavaScript

Real life example

If you want to see how this is implemented in a real project, here is the link to an open source project called “Alliance Auth” that implements a portal web page and has a very similar notification architecture. The link is to the notification app within that portal: https://gitlab.com/allianceauth/allianceauth/-/tree/master/allianceauth/notifications

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement