Django TemplateSyntaxError - 'staticfiles' is not a registered tag library
Solution 1:
If you have any of the following tags in your template:
{% load staticfiles %}
{% load static from staticfiles %}
{% load admin_static %}
Then replace it with:
{% load static %}
You have to make this change because {% load staticfiles %}
and {% load admin_static %}
were deprecated in Django 2.1, and removed in Django 3.0.
Solution 2:
- Try
{% load static %}
instead of{% load staticfiles %}
- If effect of CSS or any other files doesn't reflect in your template then also write following lines in the end of your
settings.py
file
STATIC_URL = '/static/'
STATICFILES_DIRS = [os.path.join(BASE_DIR, 'static')]
VENV_PATH = os.path.dirname(BASE_DIR)
STATIC_ROOT = os.path.join(VENV_PATH, 'static_root')
Solution 3:
Register staticfiles to tag library
staticfiles has been change to static
You can register with the fallowing code in your settings.py
Add this code in your TEMPLATES settings:
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
'libraries' : {
'staticfiles': 'django.templatetags.static',
}
},
},
]
Note the you can find libraries witch you don't have it
Solution 4:
This worked for me using django 3.1.4.
{% load static %}
<link rel"stylesheet" href = "{% static 'style.css' %}">