Is there a Django App/Plugin that will do notifications for me? [closed]
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this questionSuch as Twitter's drop down notifications whenever something happens.
Whenever a user finishes registration, the notification will drop down and say开发者_运维知识库, "Thank you"
Would django flash message be sufficient for you?
Why not use django.contrib.messages if you're using Django >= 1.2?
Read this Django Advent article on django.contrib.messages. It seems like it should do what you want.
精彩评论