bgneal@0: from django.conf.urls.defaults import patterns, include, url bgneal@0: bgneal@0: # Uncomment the next two lines to enable the admin: bgneal@0: # from django.contrib import admin bgneal@0: # admin.autodiscover() bgneal@0: bgneal@0: urlpatterns = patterns('', bgneal@0: # Examples: bgneal@0: # url(r'^$', 'bns_website.views.home', name='home'), bgneal@0: # url(r'^bns_website/', include('bns_website.foo.urls')), bgneal@0: bgneal@0: # Uncomment the admin/doc line below to enable admin documentation: bgneal@0: # url(r'^admin/doc/', include('django.contrib.admindocs.urls')), bgneal@0: bgneal@0: # Uncomment the next line to enable the admin: bgneal@0: # url(r'^admin/', include(admin.site.urls)), bgneal@0: )