В проекте django некоторые статические файлы отображаются, а некоторые нет. Почему?

[only logo and about.html shows up .I have loaded static correctly too.This shows in findstatic (https://i.stack.imgur.com/ahnIV.png)

Запускается about.jpg, но не запускается building.jpg записывается.

urlpatterns = [
    path('', include('pages.urls')),
    path('listings/', include('listings.urls')),
    path('accounts/', include('accounts.urls')),
    path('contacts/', include('contacts.urls')),
    path('admin/', admin.site.urls),
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
Вернуться на верх