Skip to content

Commit 8a57158

Browse files
committed
fix(home/templates): replace deprecated 'staticfiles' tag with 'static' in base.html and index.html for Django 3.0 compatibility
1 parent f8cb292 commit 8a57158

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

{{cookiecutter.project_slug}}/home/templates/base.html

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

{{cookiecutter.project_slug}}/home/templates/home/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{% raw %}
22
{% extends '../base.html' %}
3-
{% load staticfiles %}
3+
{% load static %}
44
{% load bootstrap4 %}
55

66
{% block content %}

0 commit comments

Comments
 (0)