From 3f5c018c8a28952a239510fafe619de391dabfb8 Mon Sep 17 00:00:00 2001 From: Jeff Bradberry Date: Tue, 4 Jun 2019 13:27:10 -0400 Subject: [PATCH] Replace the load of the staticfiles template library with static The staticfiles library will be going away before too long. --- awx/templates/rest_framework/api.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/templates/rest_framework/api.html b/awx/templates/rest_framework/api.html index 5d14fea16d..64b1dfa0c2 100644 --- a/awx/templates/rest_framework/api.html +++ b/awx/templates/rest_framework/api.html @@ -1,5 +1,5 @@ {% extends 'rest_framework/base.html' %} -{% load i18n staticfiles %} +{% load i18n static %} {% block title %}{{ name }} · {% trans 'AWX REST API' %}{% endblock %}