summaryrefslogtreecommitdiff
path: root/ishtar/urls.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@peacefrogs.net>2010-12-09 20:33:43 +0100
committerÉtienne Loks <etienne.loks@peacefrogs.net>2010-12-24 17:39:02 +0100
commit8e6d2c425cb156a06a8d6de7c58adbcf3e5c3845 (patch)
treecd2ef867a24930e2f0e6c9a636fa11d131f565ae /ishtar/urls.py
parent1f8f903482035fbedc0483c917f5a9a686d8864a (diff)
downloadIshtar-8e6d2c425cb156a06a8d6de7c58adbcf3e5c3845.tar.bz2
Ishtar-8e6d2c425cb156a06a8d6de7c58adbcf3e5c3845.zip
First version of the main admin (refs #26)
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)),
)