diff options
author | Aamir Khan <syst3m.w0rm@gmail.com> | 2012-06-11 18:14:11 -0400 |
---|---|---|
committer | Aamir Khan <syst3m.w0rm@gmail.com> | 2012-06-11 18:14:11 -0400 |
commit | 0e4bf7c225fe2b68296f3a644755b49104459c14 (patch) | |
tree | a88682836a489890923fe81391c46d3d6a5924d1 /urls.py | |
parent | ef266b315341440006ac504dc24b688cdcdc2d51 (diff) | |
download | hyperkitty-0e4bf7c225fe2b68296f3a644755b49104459c14.tar.gz hyperkitty-0e4bf7c225fe2b68296f3a644755b49104459c14.tar.xz hyperkitty-0e4bf7c225fe2b68296f3a644755b49104459c14.zip |
Basic configuration stuff
Diffstat (limited to 'urls.py')
-rw-r--r-- | urls.py | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -5,8 +5,8 @@ from api import EmailResource, ThreadResource, SearchResource from django.contrib.staticfiles.urls import staticfiles_urlpatterns # 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('', # Index @@ -72,8 +72,8 @@ urlpatterns = patterns('', # Uncomment the admin/doc line below to enable admin documentation: # url(r'^admin/doc/', include('django.contrib.admindocs.urls')), - # Uncomment the next line to enable the admin: - # url(r'^admin/', include(admin.site.urls)), + # Admin + url(r'^admin/', include(admin.site.urls)), ) #) + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT) urlpatterns += staticfiles_urlpatterns() |