summaryrefslogtreecommitdiff
path: root/greenbox/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'greenbox/urls.py')
-rwxr-xr-xgreenbox/urls.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/greenbox/urls.py b/greenbox/urls.py
new file mode 100755
index 0000000..b015f5e
--- /dev/null
+++ b/greenbox/urls.py
@@ -0,0 +1,17 @@
1from django.conf.urls.defaults import *
2
3# Uncomment the next two lines to enable the admin:
4# from django.contrib import admin
5# admin.autodiscover()
6
7urlpatterns = patterns('',
8 # Example:
9 # (r'^greenbox/', include('greenbox.foo.urls')),
10
11 # Uncomment the admin/doc line below and add 'django.contrib.admindocs'
12 # to INSTALLED_APPS to enable admin documentation:
13 # (r'^admin/doc/', include('django.contrib.admindocs.urls')),
14
15 # Uncomment the next line to enable the admin:
16 # (r'^admin/', include(admin.site.urls)),
17)