From 308818bd5d2d6270cba229e606e501ac41bf4e6a Mon Sep 17 00:00:00 2001 From: trhr Date: Sun, 9 Feb 2020 20:00:33 -0600 Subject: [PATCH] {% load staticfiles %} and {% load admin_static %} are deprecated in favor of {% load static %}, which works the same. --- evennia/web/webclient/templates/webclient/base.html | 2 +- evennia/web/website/templates/website/_menu.html | 2 +- evennia/web/website/templates/website/base.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/evennia/web/webclient/templates/webclient/base.html b/evennia/web/webclient/templates/webclient/base.html index 46353b18ad..e65467da12 100644 --- a/evennia/web/webclient/templates/webclient/base.html +++ b/evennia/web/webclient/templates/webclient/base.html @@ -6,7 +6,7 @@ with evennia set up automatically and get the Evennia JS lib and JQuery available. --> -{% load staticfiles %} +{% load static %} {{game_name}} diff --git a/evennia/web/website/templates/website/_menu.html b/evennia/web/website/templates/website/_menu.html index a947445167..3d6501fb45 100644 --- a/evennia/web/website/templates/website/_menu.html +++ b/evennia/web/website/templates/website/_menu.html @@ -3,7 +3,7 @@ Allow to customize the menu that appears at the top of every Evennia webpage. Copy this file to your game dir's web/template_overrides/website folder and edit it to add/remove links to the menu. {% endcomment %} -{% load staticfiles %} +{% load static %}