diff options
| author | Maksim A. Boyko <maksim.a.boyko@gmail.com> | 2012-06-11 15:45:55 -0400 |
|---|---|---|
| committer | Maksim A. Boyko <maksim.a.boyko@gmail.com> | 2012-06-11 15:45:55 -0400 |
| commit | bb1ef87ef8af712e80a10ab0f11ec3e241665b19 (patch) | |
| tree | 92c80721c3c9d48390f8de08c8b024a05a765687 | |
| parent | d381c94c9252885ae56876cc4022101c9d8d117a (diff) | |
Core: Enable django admin
| -rw-r--r-- | scanneerjammer/urls.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scanneerjammer/urls.py b/scanneerjammer/urls.py index 9735f0c..e92ab41 100644 --- a/scanneerjammer/urls.py +++ b/scanneerjammer/urls.py @@ -1,8 +1,8 @@ from django.conf.urls import patterns, include, url # 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('', # Examples: @@ -10,8 +10,8 @@ urlpatterns = patterns('', # url(r'^scanneerjammer/', include('scanneerjammer.foo.urls')), # Uncomment the admin/doc line below to enable admin documentation: - # url(r'^admin/doc/', include('django.contrib.admindocs.urls')), + url(r'^admin/doc/', include('django.contrib.admindocs.urls')), # Uncomment the next line to enable the admin: - # url(r'^admin/', include(admin.site.urls)), + url(r'^admin/', include(admin.site.urls)), ) |
