There are couple of approaches of making such applications - real-time activity feed.
Polling
This method is by far the easiest however it is not as elegant as the latter one and it does not scale very well. The idea is for your client application (js on the web or an app for mobile devices) to keep asking (poll) the server for new information and if the server will return any, then to display that to the user. This can be done rather easily in Django (since it follows standard request-respond cycle) just by making a view, which upon request will return all the latest feed information to the client. The reason why this does not scale very well is because your server will have to handle many useless requests. What I mean by that is that most likely the client application will poll your server at higher frequency compared to frequency the data will change on the server, so for majority of requests, the response will be nothing. However each request will eat certain resources, hence limiting server's scalability.
PubSub
Unlike the previous approach, the idea here is that the client will subscribe for some information on the server and as soon as the server will have any, it will publish it by sending it to all subscribers. This eliminates the need for all unnecessary requests however this does not follow the standard request-response cycle because by subscribing, the client will keep open connection to a server. This poses some challenges on the server because to keep each open connection requires resources. This is where libraries like gevent are used. They allow to open each request as micro-thread which uses least possible resources, hence solving what is usually referred to as 10K problem (10000 open connections simultaneously). Long polling and websockets both belong in this category. The way they work is different but they both follow PubSub principle.
Unfortunately to implement either in Djagno is not straight forward. I only hacked around with couple of solutions in this category and all of them made the my Django project much more complicated. If you will find polling not being enough or you just want more elegant solution, here you can find some pointers on how to proceed.
http://books.google.com/books?id=E7p-07kNfXYC (Chapter 8)
Does Django have a way to open a HTTP long poll connection?
http://www.youtube.com/watch?v=nocGRsytBkk
http://pypi.python.org/pypi/django-websocket
https://github.com/stephenmcd/django-socketio
Notes
In your question you mentioned Celery and Redis. Redis is just provides fast key-value storage. So you can use Redis to store the information for the feeds and then use any of the above approaches to serve that data. Celery on the other hand is used to do queued tasks so I don't see how that is applicable to read-time feeds (please somebody correct me if I am wrong).