changeset 62 | db103856505e |
parent 44 | 2b09336352b5 |
child 83 | fd2e1bd7af82 |
--- a/urls.py Tue Feb 23 20:24:26 2010 +0530 +++ b/urls.py Tue Feb 23 20:40:55 2010 +0530 @@ -17,7 +17,10 @@ # Uncomment the admin/doc line below and add 'django.contrib.admindocs' # to INSTALLED_APPS to enable admin documentation: # (r'^admin/doc/', include('django.contrib.admindocs.urls')), - + + (r'^images/(?P<path>.*)$', 'django.views.static.serve', + {'document_root': './images/'}), + (r'^$', userViews.homepage), (r'^task/browse/$', taskViews.browse_tasks),