Skip to content

Commit

Permalink
Replace use of the deprecated staticfiles template library with static
Browse files Browse the repository at this point in the history
  • Loading branch information
jbradberry committed Jul 12, 2019
1 parent d464df5 commit beb1dd5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion awx/templates/error.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% extends "rest_framework/api.html" %}
{% load i18n staticfiles %}
{% load i18n static %}

{% block title %}{{ name }} · {% trans 'AWX' %}{% endblock %}

Expand Down
2 changes: 1 addition & 1 deletion awx/templates/rest_framework/login.html
Original file line number Diff line number Diff line change
@@ -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 %}
Expand Down

0 comments on commit beb1dd5

Please sign in to comment.