Use "load static" instead of "load staticfiles"

"{% load staticfiles %}" is deprecated in Django 2.1 [1] and will be
removed in Django 3.0. This commit addresses the deprecation warning.

[1] https://docs.djangoproject.com/en/3.1/releases/2.1/#id2

Change-Id: Icf0c032bae2674b4d9373b753ef8d81f3729a401
This commit is contained in:
Akihiro Motoki 2021-01-13 21:31:36 +09:00
parent 84be2acf8e
commit 1a40115eee
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
{% load branding i18n staticfiles %}
{% load branding i18n static %}
{% load load_config from horizon %}
{% load_config as CONF %}