{% load staticfiles %} and {% load admin_static %} were deprecated in Django 2.1, and removed in Django 3.0.

If you have any of the following in your template:

{% load staticfiles %}
{% load static from staticfiles %}
{% load admin_static %}

You should replace the tag with simply:

{% load static %}

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注