Hi Claire,You can configure the website urls like that:from django.conf.urls.defaults import patterns, include, urlfrom django.views.generic.simple import direct_to_templateurlpatterns = patterns('',url(r'^$', direct_to_template, { 'template' : 'home.html'}, name='about'),)Those URL conf will render the "home.html" template when you that url "/".To test it you run manage.py runserver then, open on your browser "http://localhost/8000"You can also take a look at this post: http://imarcelolz.blogspot.com.br/2012/04/django-14-templateview.html
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To post to this group, send email to django...@googlegroups.com.
To unsubscribe from this group, send email to django-users...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To post to this group, send email to django...@googlegroups.com.
To unsubscribe from this group, send email to django-users...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.