dj22: replace load staticfiles by load static (#51516)

This commit is contained in:
Benjamin Dauvergne 2021-03-01 14:30:35 +01:00
parent 48f52ae9ba
commit 7bb4127fc7
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
{% load staticfiles %}<!doctype html> {% load static %}<!doctype html>
<html> <html>
<head> <head>
<script src="{% static "js/jquery.min.js" %}"></script> <script src="{% static "js/jquery.min.js" %}"></script>

View File

@ -1,5 +1,5 @@
{% extends "gadjo/base.html" %} {% extends "gadjo/base.html" %}
{% load staticfiles %} {% load static %}
{% block extrascripts %} {% block extrascripts %}
{{ block.super }} {{ block.super }}