From 22f9747f82d46f8c99dab5d566b6e6c9537c6795 Mon Sep 17 00:00:00 2001 From: Shashank Jaitly Date: Fri, 6 Nov 2020 16:46:22 +0530 Subject: [PATCH] Update index.html {% load staticfiles %} and {% load admin_static %} were deprecated in Django 2.1, and removed in Django 3.0. I propose to change it with {% load static %} --- .../templates/rest_framework_swagger/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rest_framework_swagger/templates/rest_framework_swagger/index.html b/rest_framework_swagger/templates/rest_framework_swagger/index.html index b2de7bb4..13ef5c5e 100644 --- a/rest_framework_swagger/templates/rest_framework_swagger/index.html +++ b/rest_framework_swagger/templates/rest_framework_swagger/index.html @@ -1,5 +1,5 @@ {% load i18n %} -{% load staticfiles %} +{% load static %}