diff options
author | Nishanth | 2010-01-24 15:43:19 +0530 |
---|---|---|
committer | Nishanth | 2010-01-24 15:43:19 +0530 |
commit | 10fb5c9e18a9f66c364bb186d403551a3845157b (patch) | |
tree | bb605a6f0670fa214b2b963743fa212bfd871fa2 /urls.py | |
parent | fe42dd79dc27fc0ff63e65105decfc5dc34e1a6a (diff) | |
download | pytask-10fb5c9e18a9f66c364bb186d403551a3845157b.tar.gz pytask-10fb5c9e18a9f66c364bb186d403551a3845157b.tar.bz2 pytask-10fb5c9e18a9f66c364bb186d403551a3845157b.zip |
Created taskapp and added data to models.py and edited settings.py to make it usable in admin interface.
Diffstat (limited to 'urls.py')
-rw-r--r-- | urls.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,8 +1,8 @@ from django.conf.urls.defaults import * # 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: @@ -13,5 +13,5 @@ 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)), ) |