/ Published in: Django
Add to bottom of urls.py
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
from django.conf import settings if settings.DEBUG: urlpatterns += patterns('', (r'^includes/(?P<path>.*)$', 'django.views.static.serve', {'document_root': 'C:/ClientWork/thosecleverkids/includes'}), )