comparison bns_website/urls.py @ 0:c8881d9ca347

Initial commit after running 'django-admin.py startproject'.
author Brian Neal <bgneal@gmail.com>
date Tue, 25 Oct 2011 18:38:42 -0500
parents
children 71f2941161e9
comparison
equal deleted inserted replaced
-1:000000000000 0:c8881d9ca347
1 from django.conf.urls.defaults import patterns, include, url
2
3 # Uncomment the next two lines to enable the admin:
4 # from django.contrib import admin
5 # admin.autodiscover()
6
7 urlpatterns = patterns('',
8 # Examples:
9 # url(r'^$', 'bns_website.views.home', name='home'),
10 # url(r'^bns_website/', include('bns_website.foo.urls')),
11
12 # Uncomment the admin/doc line below to enable admin documentation:
13 # url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
14
15 # Uncomment the next line to enable the admin:
16 # url(r'^admin/', include(admin.site.urls)),
17 )