summaryrefslogtreecommitdiff
path: root/greenbox/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'greenbox/urls.py')
-rwxr-xr-xgreenbox/urls.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/greenbox/urls.py b/greenbox/urls.py
index b015f5e..683a1da 100755
--- a/greenbox/urls.py
+++ b/greenbox/urls.py
@@ -1,8 +1,8 @@
1from django.conf.urls.defaults import * 1from django.conf.urls.defaults import *
2 2
3# Uncomment the next two lines to enable the admin: 3# Uncomment the next two lines to enable the admin:
4# from django.contrib import admin 4from django.contrib import admin
5# admin.autodiscover() 5admin.autodiscover()
6 6
7urlpatterns = patterns('', 7urlpatterns = patterns('',
8 # Example: 8 # Example:
@@ -13,5 +13,5 @@ urlpatterns = patterns('',
13 # (r'^admin/doc/', include('django.contrib.admindocs.urls')), 13 # (r'^admin/doc/', include('django.contrib.admindocs.urls')),
14 14
15 # Uncomment the next line to enable the admin: 15 # Uncomment the next line to enable the admin:
16 # (r'^admin/', include(admin.site.urls)), 16 (r'^recipe/admin/', include(admin.site.urls)),
17) 17)