Is there any easy way to have two or more applications run simultaneously? Having created one fully-working application, which provides content for part of my site, I now want to construct another which will provide site-global menus and other such features. However, I see no easy way of working this into the rendering of the template that the first app does.
The only possibility that I can see is this: * Find a way to prevent django's template system from silently dropping empty tags, and leave them in place instead * Add a middleware layer that has a process_response hook, get it do import and run the menu application, and use the template system to replace the tags in the output of the previous step This seems perhaps overcomplicated. Is there an easier way to go about it; and if not, can anyone give me any pointers? -Andy