Skip to content

Commit

Permalink
fix(home/templates): replace deprecated 'staticfiles' tag with 'stati…
Browse files Browse the repository at this point in the history
…c' in base.html and index.html for Django 3.0 compatibility
  • Loading branch information
Hesbon5600 committed Aug 13, 2024
1 parent f8cb292 commit 8a57158
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion {{cookiecutter.project_slug}}/home/templates/base.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% raw %}
{% load staticfiles %}
{% load static %}
<!doctype html>
<html lang="en">
<head>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% raw %}
{% extends '../base.html' %}
{% load staticfiles %}
{% load static %}
{% load bootstrap4 %}

{% block content %}
Expand Down

0 comments on commit 8a57158

Please sign in to comment.