Replace the load of the staticfiles template library with static

The staticfiles library will be going away before too long.
This commit is contained in:
Jeff Bradberry 2019-06-04 13:27:10 -04:00
parent 12e3d0aebf
commit 3f5c018c8a

View File

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