From 10fb5c9e18a9f66c364bb186d403551a3845157b Mon Sep 17 00:00:00 2001 From: Nishanth Date: Sun, 24 Jan 2010 15:43:19 +0530 Subject: Created taskapp and added data to models.py and edited settings.py to make it usable in admin interface. --- urls.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'urls.py') 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)), ) -- cgit