I know this has been asked before, but I\'m having a hard time setting up JS on my Django web app, even though I\'m reading the documentation.
I\'m running the Django de
I just remove the '^', "r'static/" instead of "r'^static/". It's works for me ,good luck.
url(r'static/(?P.*)$', 'django.views.static.serve', { 'document_root': the_path }),