[Answer]-Can't get django 1.5.8 to serve static files in apps sub-directory

1👍

Are you serving from runserver?

If so, did you add this to you urls.py?

urlpatterns += staticfiles_urlpatterns()

Also make sure your app is in INSTALLED_APPS in settings.py

👤twined

Leave a comment