aboutsummaryrefslogtreecommitdiffstats
path: root/bn_django/urls.py
diff options
context:
space:
mode:
authorbnewbold <bnewbold@manus.(none)>2007-02-06 23:34:08 -0800
committerbnewbold <bnewbold@manus.(none)>2007-02-06 23:34:08 -0800
commitb88372f0327976c31e6b508b26729bab60743f82 (patch)
tree16958c4395bc881399e475a927162e8837d67310 /bn_django/urls.py
parentf025a9f65ecd76e4442ce62684218ecb81506c9b (diff)
downloadbnewnet-b88372f0327976c31e6b508b26729bab60743f82.tar.gz
bnewnet-b88372f0327976c31e6b508b26729bab60743f82.zip
photos app roughed in, style tweaked
TODO: search code
Diffstat (limited to 'bn_django/urls.py')
-rw-r--r--bn_django/urls.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/bn_django/urls.py b/bn_django/urls.py
index f8b1b62..327e9ec 100644
--- a/bn_django/urls.py
+++ b/bn_django/urls.py
@@ -17,4 +17,5 @@ urlpatterns = patterns('',
(r'^admin/', include('django.contrib.admin.urls')),
(r'^static/(?P<path>.*)$', 'django.views.static.serve', {'document_root': '/home/bnewbold/bn-project/static', 'show_indexes': True}),
(r'^style/(?P<path>.*)$', 'django.views.static.serve', {'document_root': '/home/bnewbold/bn-project/static/style'}),
+ (r'^media/(?P<path>.*)$', 'django.views.static.serve', {'document_root': '/home/bnewbold/bn-project/media'}),
)