Where is your template_dirs in settings.py pointed too? If you can post your urls.py.
Looking at the tutorial again, (r'^polls/$', 'polls.views.index'), means that the url 'polls' will serve the index function in the views.py file inside your polls app. Your index.html should lie inside the top level of your templates directory and will serve what ever you set as your top level domain name, or http://192.168.1.131:9999/ of course you have to set that up in your urls.py I use urlpatterns = patterns('django.views.generic.simple', (r'^$', 'direct_to_template',{'template': 'index.html'}), and then you would have (r'polls/$ , ('polls.view.index') -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

