aboutsummaryrefslogtreecommitdiffstats
path: root/piccast/urls.py
diff options
context:
space:
mode:
authorbnewbold <bnewbold@robocracy.org>2011-04-20 17:36:39 +0000
committerbnewbold <bnewbold@robocracy.org>2011-04-20 17:37:00 +0000
commite3d0bb757c642a021c164f9d1a4286e63c7246bf (patch)
treeb84057b45d7715eb444fb87117624030202a60f9 /piccast/urls.py
downloadpiccast-e3d0bb757c642a021c164f9d1a4286e63c7246bf.tar.gz
piccast-e3d0bb757c642a021c164f9d1a4286e63c7246bf.zip
initial commit
Diffstat (limited to 'piccast/urls.py')
-rw-r--r--piccast/urls.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/piccast/urls.py b/piccast/urls.py
new file mode 100644
index 0000000..5dfdaa3
--- /dev/null
+++ b/piccast/urls.py
@@ -0,0 +1,17 @@
+from django.conf.urls.defaults import *
+
+# Uncomment the next two lines to enable the admin:
+# from django.contrib import admin
+# admin.autodiscover()
+
+urlpatterns = patterns('',
+ # Example:
+ # (r'^piccast/', include('piccast.foo.urls')),
+
+ # Uncomment the admin/doc line below and add 'django.contrib.admindocs'
+ # to INSTALLED_APPS to enable admin documentation:
+ # (r'^admin/doc/', include('django.contrib.admindocs.urls')),
+
+ # Uncomment the next line to enable the admin:
+ # (r'^admin/', include(admin.site.urls)),
+)