Skip to content

Commit 0553217

Browse files
committed
Fix deprecated staticfiles tag
1 parent be76931 commit 0553217

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

django_mfa/templates/django_mfa/base.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
{% load staticfiles %}
2+
{% load static %}
33
<html lang="en">
44
<head>
55
<meta charset="utf-8">

django_mfa/templates/u2f/base.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends base_template|default:"u2f_base.html" %}
2-
{% load staticfiles %}
2+
{% load static %}
33
{% load i18n %}
44
{% block content %}
55
<script src="{% static 'django_u2f/u2f-api.js' %}"></script>

django_mfa/templates/u2f_base.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<!DOCTYPE html>
2-
{% load staticfiles %}
32
{% load static %}
43
<html lang="en" >
54
<head>

0 commit comments

Comments
 (0)