I'm trying to get Django to put up the most basic possible template/page which consists of nothing more than an html doc with essentially nothing in it, no apps, nothing that really requires the power of Django.
The tracebacks I'm getting seem to be alternately complaining about my templates and urlpatterns. So, 2 questions:
1) What do I put in urls.py that is a basic "catch all" pattern? I tried: urlpatterns = patterns('',) urlpatterns = patterns('', (r'*', ''),) 2) How do I tell it to find my base.html in the mysite/templates directory? Any help appreciated. Michael