Django - Stati c файлы частично загружаются - PullRequest
0 голосов
/ 05 мая 2020

У меня есть следующая папка stati c в моем Django проекте:

enter image description here

On all of my html pages, I write the following:

{% extends "app_base.html" %}
{% load static %}
{% block app %}

When I run server, the static pages load partially, I know this by inspecting element on chrome:

enter image description here

I tried running $ python manage.py collectstatic mentioned in the docs, didn't help.

I can load each static file individually as in:

{% load static %}
 

У меня было django проектов в прошлом, где { % load static % } - это все, что мне нужно, любопытно, почему он не работает в этом случае.

...