summaryrefslogtreecommitdiff
path: root/ishtar/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar/urls.py')
-rw-r--r--ishtar/urls.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/ishtar/urls.py b/ishtar/urls.py
index fc201b063..1ca2431bb 100644
--- a/ishtar/urls.py
+++ b/ishtar/urls.py
@@ -1,8 +1,7 @@
from django.conf.urls.defaults import *
-# Uncomment the next two lines to enable the admin:
-# from django.contrib import admin
-# admin.autodiscover()
+from django.contrib import admin
+admin.autodiscover()
urlpatterns = patterns('',
# Example:
@@ -11,6 +10,5 @@ urlpatterns = patterns('',
# Uncomment the admin/doc line below 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)),
+ (r'^admin/', include(admin.site.urls)),
)