Adrian Holovaty wrote:
You'll want to use the "direct to template" generic view, documented here:
http://www.djangoproject.com/documentation/generic_views/#using-simple-generic-views
Here's the URLconf you'd use:
urlpatterns = patterns('',
(r'.*', 'django.views.generic.simple.direct_to_template',
{'template': 'base'}),
)
And you'd create a template "base.html" in the directory pointed-to by
your TEMPLATE_DIRS setting.
Let us know how it goes, and happy new year!
Thank you! That worked great (well, once I figured out that TEMPLATE_DIRS
wants Unix-style "slashes" even on this Winders box.) Happy new year to you also!
Michael