I have been working on this for some time now, and would like to create facebook-like notification
system. My project has following features
It has a blog interface where users can write their blogs, and people can post comments on it. I want to send notification to the author whenever somebody comments on it.
Users can post their questions, just like on stackoverflow and whenever somebody answers the question I want to inform the user which posted it.
Users can mark certain blogs/questions as favorites and whenever any activity happen on them then I want the respective user to be notified.
I after searching a lot I found a post saying that django-subscription can provide the best solution for it, however after reading the docs I have come to a dead end. I developing on windows, and when I tried to run the test, there was a failure.
Also the docs are very unclear and I am not getting how things will work. Can anybody point me in the right direction.
django-subscription
will really help. Just to give you a beginner's perspective one thing that I generally find missing in the docs is that there is noexample
of how I can use the app to see it working in one of mytemplates
. So if you can add that, it would help immensely – Sidney