Итак, я следую этому руководству по обслуживанию статических файлов после collectstatic и после изменения с {% load static%} на {% load staticfiles%}
И добавляя
`
+ static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)` to urls.py
AND adding
`
STATICFILES_FINDERS = [
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
]`
вшаблон URL, он все еще не загружает статические файлы.Я попытался использовать findstatic, и он все еще пытается смотреть в static вместо staticfiles.Буду признателен за любую помощь, я попытался прочитать документацию и добавил все, но он отказывается смотреть в папку staticfiles и переходит в static.
https://scotch.io/tutorials/working-with-django-templates-static-files#toc-settings-for-managing-static-files
https://github.com/amos-o/djangotemplates