Does anyone has idea how to display django stream actions on templates.
Does I need to use Comet to fetch values to display on my template. Since, When I am doing action.send, it is storing verb and description in table actstream_action. But how should I display the values on template ?
P.S. Please note that this is first time I am using django-activity stream.
I’ve checked django-activity-stream, seems it has no magic for rendering activity updating dynamically.
Check django-socketio for websockets way. Or simply polling tech would satisfy your requirement if the expected access loading is not that high.
I’m not quite sure what you mean about “fetch actions directly to template using various templatetags” because template rendering is accomplished during request-response proceduret.