From 5dec1e01f36ef5cae25088f7812350499c0c9b83 Mon Sep 17 00:00:00 2001 From: Tom Teichler <tom.teichler@teckids.org> Date: Sun, 8 Dec 2019 13:57:54 +0100 Subject: [PATCH] Replace staticfiles by static. https://docs.djangoproject.com/en/3.0/releases/3.0/#features-removed-in-3-0 --- biscuit/core/templates/core/base.html | 2 +- biscuit/core/templates/core/group_full.html | 2 +- biscuit/core/templates/core/person_card.html | 2 +- biscuit/core/templates/core/person_full.html | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/biscuit/core/templates/core/base.html b/biscuit/core/templates/core/base.html index 77d22b26d..9b440b9ab 100644 --- a/biscuit/core/templates/core/base.html +++ b/biscuit/core/templates/core/base.html @@ -2,7 +2,7 @@ {% extends "bootstrap4/bootstrap4.html" %} -{% load bootstrap4 i18n menu_generator staticfiles font_awesome any_js sass_tags %} +{% load bootstrap4 i18n menu_generator static font_awesome any_js sass_tags %} {% block bootstrap4_extra_head %} {% fa_css %} diff --git a/biscuit/core/templates/core/group_full.html b/biscuit/core/templates/core/group_full.html index 017ce0bfe..cb3b8e83f 100644 --- a/biscuit/core/templates/core/group_full.html +++ b/biscuit/core/templates/core/group_full.html @@ -2,7 +2,7 @@ {% extends "core/base.html" %} -{% load bootstrap4 font_awesome i18n staticfiles %} +{% load bootstrap4 font_awesome i18n static %} {% load render_table from django_tables2 %} {% block bootstrap4_title %}{% blocktrans %}Group{% endblocktrans %} - {{ block.super }}{% endblock %} diff --git a/biscuit/core/templates/core/person_card.html b/biscuit/core/templates/core/person_card.html index 7aea37188..b0476e768 100644 --- a/biscuit/core/templates/core/person_card.html +++ b/biscuit/core/templates/core/person_card.html @@ -1,6 +1,6 @@ {# -*- engine:django -*- #} -{% load staticfiles cropping %} +{% load static cropping %} <div class="card shadow"> <div class="card-header">{{ person.first_name }} {{ person.last_name }}</div> diff --git a/biscuit/core/templates/core/person_full.html b/biscuit/core/templates/core/person_full.html index 6a3052f53..684a72f40 100644 --- a/biscuit/core/templates/core/person_full.html +++ b/biscuit/core/templates/core/person_full.html @@ -2,7 +2,7 @@ {% extends "core/base.html" %} -{% load bootstrap4 font_awesome i18n staticfiles cropping %} +{% load bootstrap4 font_awesome i18n static cropping %} {% load render_table from django_tables2 %} {% block bootstrap4_title %}{% blocktrans %}Person{% endblocktrans %} - {{ block.super }}{% endblock %} -- GitLab