美文网首页Day-Day-Up
'staticfiles' is not a valid tag

'staticfiles' is not a valid tag

作者: az1981cn | 来源:发表于2019-12-15 07:29 被阅读0次

{% load staticfiles %} and {% load adminstatic %} 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 adminstatic %}

You should replace the tag with simply:

{% load static %}

相关文章

网友评论

    本文标题:'staticfiles' is not a valid tag

    本文链接:https://www.haomeiwen.com/subject/hokknctx.html