Commit 8b50dd2f2c7302165b0a749fe00a37f77f316b71
1 parent
6edc7a10
un-do
Showing
1 changed file
with
3 additions
and
3 deletions
urls.py
... | ... | @@ -9,8 +9,8 @@ from common.util import url |
9 | 9 | from semantics.sem_urls import SEMANTIC_PATTERNS |
10 | 10 | |
11 | 11 | # Uncomment the next two lines to enable the admin: |
12 | -#from django.contrib import admin | |
13 | -#admin.autodiscover() | |
12 | +from django.contrib import admin | |
13 | +admin.autodiscover() | |
14 | 14 | |
15 | 15 | urlpatterns = patterns('', |
16 | 16 | url(r'^accounts/settings/$', 'accounts.views.settings', name='settings'), |
... | ... | @@ -31,7 +31,7 @@ urlpatterns = patterns('', |
31 | 31 | # (r'^admin/doc/', include('django.contrib.admindocs.urls')), |
32 | 32 | |
33 | 33 | # Uncomment the next line to enable the admin: |
34 | -# (r'^admin/', include(admin.site.urls)), | |
34 | + (r'^admin/', include(admin.site.urls)), | |
35 | 35 | |
36 | 36 | url(r'^%s(?P<path>.*)$' % settings.MEDIA_URL.lstrip('/'), |
37 | 37 | 'django.views.static.serve', |
... | ... |