I\'m trying to push my Django project to Heroku, but it isn\'t loading the staticfiles.
I used this to setup the things, everything is fine but I\'m not able to fix
Your urls.py file lacks the setting to manage and route requests for static resources.
urls.py
in order to provide access to static resorces you must add to urlpatterns of urls.py:
urlpatterns
urlpatterns += patterns('', (r'^static/(?P.*)$', 'django.views.static.serve', {'document_root': settings.STATIC_ROOT}), )