On Wednesday 17 August 2005 12:49 pm, Andy Shaw wrote: > 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.
For dynamic data that you need on every page, I would make a custom template tag. Check this out for how to do it: http://code.djangoproject.com/file/djangoproject.com/django_website/apps/blog/templatetags/latestblogentry.py MWM