summaryrefslogtreecommitdiff
path: root/urls.py
diff options
context:
space:
mode:
authorNishanth2010-01-24 15:43:19 +0530
committerNishanth2010-01-24 15:43:19 +0530
commit10fb5c9e18a9f66c364bb186d403551a3845157b (patch)
treebb605a6f0670fa214b2b963743fa212bfd871fa2 /urls.py
parentfe42dd79dc27fc0ff63e65105decfc5dc34e1a6a (diff)
downloadpytask-10fb5c9e18a9f66c364bb186d403551a3845157b.tar.gz
pytask-10fb5c9e18a9f66c364bb186d403551a3845157b.tar.bz2
pytask-10fb5c9e18a9f66c364bb186d403551a3845157b.zip
Created taskapp and added data to models.py and edited settings.py to make it usable in admin interface.
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/urls.py b/urls.py
index 111c06b..25d2f6c 100644
--- a/urls.py
+++ b/urls.py
@@ -1,8 +1,8 @@
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:
@@ -13,5 +13,5 @@ urlpatterns = patterns('',
# (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)),
)