I have an object called Groups
that is used in every single page on my website. However, Django only passes in Python objects to html through render_to_response
and I can't render to response everytime something happens to the groups object.
How do I maintain this object(as in make it respond to adding and deletion) and produce it in every Django template that I have without calling render_to_response
?