Replace use of the deprecated staticfiles template library with static

This commit is contained in:
Jeff Bradberry 2019-06-26 14:53:53 -04:00
parent d464df557b
commit beb1dd5ae7
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
{% extends "rest_framework/api.html" %}
{% load i18n staticfiles %}
{% load i18n static %}
{% block title %}{{ name }} · {% trans 'AWX' %}{% endblock %}

View File

@ -1,6 +1,6 @@
{# Partial copy of login_base.html from rest_framework with AWX change. #}
{% extends 'rest_framework/api.html' %}
{% load i18n staticfiles %}
{% load i18n static %}
{% block breadcrumbs %}
{% endblock %}