I've been reading the docs for django-notification
, and they seem to cover creating notifications just fine, but not how to display them to users. Is there a good reference for this out there, and my Google-fu has just failed me? If not, can someone give me some pointers here? Thanks.
How do I display notifications from `django-notification`?
8.3k views Asked by Hank Gay At
2
There are 2 answers
1
On
Tale a look at Pinax the source can be found on github. They use notifications a lot for their project site http://code.pinaxproject.com .
Edit:
I just gave it a look. It seems all that Pinax does to make it work is to list it in installed apps before any the other external apps and include it's urls file like you usually would do.
The answer is you have to build it into your own templates. This can be as simple as the following snippet:
As @googletorp answered, Pinax is the goto place for figuring out how the authors are using
django-notification
. In particular, there is a notification administration page that can serve as a handy guide.