39
I found a solution. This was my initial myapp/urls.py
:
from django.conf.urls.defaults import patterns, include, url
from django.contrib import admin
from django.conf import settings
admin.autodiscover()
urlpatterns = patterns('',
url(r'^$', include('myapp.cesar.urls')),
url(r'^admin/', include(admin.site.urls)),
)
I added these lines to the end of the original myapp/urls.py
file:
if not settings.DEBUG:
urlpatterns += patterns('',
(r'^static/(?P<path>.*)$', 'django.views.static.serve', {'document_root': settings.STATIC_ROOT}),
)
Now it’s working fine. I hope this helps someone else too
0
Probably you should manually create empty STATIC_ROOT folder specified in you settings before running ‘./manage.py collectstatic’.
- [Django]-Fields.E304 Reverse accessor clashes in Django
- [Django]-Django 1.7 – "No migrations to apply" when run migrate after makemigrations
- [Django]-WARNING Not Found: /favicon.ico in Django
Source:stackexchange.com