summaryrefslogtreecommitdiff
path: root/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/urls.py b/urls.py
index 8f1c19a..c131c87 100644
--- a/urls.py
+++ b/urls.py
@@ -17,7 +17,10 @@ urlpatterns = patterns('',
# 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),