From 3b981d3cf07e6e2da0218a656b8a7c765fef9a94 Mon Sep 17 00:00:00 2001 From: Job Doesburg Date: Fri, 12 Apr 2024 10:30:17 +0200 Subject: [PATCH] Fix --- website/tosti/settings/base.py | 15 +-------------- website/tosti/templates/tosti/base.html | 5 +++-- 2 files changed, 4 insertions(+), 16 deletions(-) diff --git a/website/tosti/settings/base.py b/website/tosti/settings/base.py index 93361331..547dc47e 100644 --- a/website/tosti/settings/base.py +++ b/website/tosti/settings/base.py @@ -282,17 +282,4 @@ AGE_VERIFICATION_INSTITUTE_VALUE = "ru.nl" YIVI_SERVER_URL = os.environ.get("YIVI_SERVER_URL") -YIVI_SERVER_TOKEN = os.environ.get("YIVI_SERVER_TOKEN") - -BOOTSTRAP5 = { - "css_url": { - "url": "/static/tosti/css/bootstrap.min.css", - "integrity": "sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65", - "crossorigin": "anonymous", - }, - "javascript_url": { - "url": "/static/tosti/js/bootstrap.bundle.min.js", - "integrity": "sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4", - "crossorigin": "anonymous", - }, -} +YIVI_SERVER_TOKEN = os.environ.get("YIVI_SERVER_TOKEN") \ No newline at end of file diff --git a/website/tosti/templates/tosti/base.html b/website/tosti/templates/tosti/base.html index 5ebc2785..da8c8d22 100644 --- a/website/tosti/templates/tosti/base.html +++ b/website/tosti/templates/tosti/base.html @@ -13,7 +13,7 @@ - {% bootstrap_css %} + {% block styles %}{% endblock %} @@ -201,7 +201,8 @@

Identify yourself


{% endblock %} -{% bootstrap_javascript %} + + {% block js %}{% endblock %}