From 1a40115eee7ee892f43c8c9675a23dd87b56c8ec Mon Sep 17 00:00:00 2001 From: Akihiro Motoki Date: Wed, 13 Jan 2021 21:31:36 +0900 Subject: [PATCH] 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 --- openstack_dashboard/templates/500.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openstack_dashboard/templates/500.html b/openstack_dashboard/templates/500.html index 705b279a68..7395142976 100644 --- a/openstack_dashboard/templates/500.html +++ b/openstack_dashboard/templates/500.html @@ -1,4 +1,4 @@ -{% load branding i18n staticfiles %} +{% load branding i18n static %} {% load load_config from horizon %} {% load_config as CONF %}