diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/bns_website/urls.py	Tue Oct 25 18:38:42 2011 -0500
@@ -0,0 +1,17 @@
+from django.conf.urls.defaults import patterns, include, url
+
+# Uncomment the next two lines to enable the admin:
+# from django.contrib import admin
+# admin.autodiscover()
+
+urlpatterns = patterns('',
+    # Examples:
+    # url(r'^$', 'bns_website.views.home', name='home'),
+    # url(r'^bns_website/', include('bns_website.foo.urls')),
+
+    # Uncomment the admin/doc line below to enable admin documentation:
+    # url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
+
+    # Uncomment the next line to enable the admin:
+    # url(r'^admin/', include(admin.site.urls)),
+)