aboutsummaryrefslogtreecommitdiff
path: root/codemash/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'codemash/urls.py')
-rw-r--r--codemash/urls.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/codemash/urls.py b/codemash/urls.py
new file mode 100644
index 0000000..153db34
--- /dev/null
+++ b/codemash/urls.py
@@ -0,0 +1,17 @@
1from django.conf.urls 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
7urlpatterns = patterns('',
8 # Examples:
9 # url(r'^$', 'pages.views.home', name='home'),
10 # url(r'^codemash/', include('codemash.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)