summaryrefslogtreecommitdiffstats
path: root/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/urls.py b/urls.py
index fedc122..a701ba1 100644
--- a/urls.py
+++ b/urls.py
@@ -75,5 +75,6 @@ urlpatterns = patterns('',
(r'^survey_scans/(?P<path>.*)$', 'django.views.static.serve',
{'document_root': settings.SURVEYS, 'show_indexes':True}),
-
+ (r'^photos/(?P<path>.*)$', 'django.views.static.serve',
+ {'document_root': settings.PHOTOS, 'show_indexes':True}),
)