From 8b50dd2f2c7302165b0a749fe00a37f77f316b71 Mon Sep 17 00:00:00 2001 From: Tomasz Bartosiak <tomasz.bartosiak@gmail.com> Date: Wed, 17 Oct 2018 12:13:10 +0200 Subject: [PATCH] un-do --- urls.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/urls.py b/urls.py index d173e13..3f5ef79 100644 --- a/urls.py +++ b/urls.py @@ -9,8 +9,8 @@ from common.util import url from semantics.sem_urls import SEMANTIC_PATTERNS # 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('', url(r'^accounts/settings/$', 'accounts.views.settings', name='settings'), @@ -31,7 +31,7 @@ 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)), url(r'^%s(?P<path>.*)$' % settings.MEDIA_URL.lstrip('/'), 'django.views.static.serve', -- libgit2 0.22.2