У меня есть следующая папка stati c в моем Django проекте:
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:
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 % }
- это все, что мне нужно, любопытно, почему он не работает в этом случае.