From e3d0bb757c642a021c164f9d1a4286e63c7246bf Mon Sep 17 00:00:00 2001 From: bnewbold Date: Wed, 20 Apr 2011 17:36:39 +0000 Subject: initial commit --- piccast/urls.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 piccast/urls.py (limited to 'piccast/urls.py') 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)), +) -- cgit v1.2.3