# HG changeset patch # User Nishanth Amuluru # Date 1294381391 -19800 # Node ID ee00b42e802f0fcb3c3a5f63fdfbce5f299e56d1 # Parent 485b24cc439b53d945638ceb1adf9c0c931e8648 added admin urls diff -r 485b24cc439b -r ee00b42e802f urls.py --- a/urls.py Fri Jan 07 11:48:33 2011 +0530 +++ b/urls.py Fri Jan 07 11:53:11 2011 +0530 @@ -6,8 +6,8 @@ from django.shortcuts import redirect # 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: @@ -17,7 +17,7 @@ # (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)), url(r'^accounts/register/$', register, {'form_class': CustomRegistrationForm},