Ticket #13567: urls.py

File urls.py, 286 bytes (added by Paul Garner, 14 years ago)

test file

Line 
1from django.conf.urls.defaults import *
2
3urlpatterns = patterns('django.views.generic.simple',
4 (r'^$', 'direct_to_template', {
5 'template': 'temp/template.html',
6 'extra_context': {
7 'list': ['a','b','c','d','e','f'],
8 }
9 }),
10)
Back to Top