if settings.DEBUG: # then serve static files here :)
urlpatterns += patterns('',
(r'^static_files/(?P.*)$', 'django.views.static.serve', {'document_root': 'C:/office_in_out/oliver/drb/static_files', 'show_indexes': True}),
Then you can access /static_files/filename.jpg and it should work. See the other post for production setup :)
As a side note, "how to change your django app from development to production" is you go to settings.py and change
DEBUG = True
to DEBUG = False
. I'm not sure what to do with TEMPLATE_DEBUG after that :)
No comments:
Post a Comment