From d7da6d6d17b23b4420a1951788522d123a6880a5 Mon Sep 17 00:00:00 2001 From: Thomas Steen Rasmussen Date: Wed, 9 Oct 2024 10:27:02 +0200 Subject: [PATCH] switch django-tables2 template to the bs5 one --- src/bornhack/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bornhack/settings.py b/src/bornhack/settings.py index 0db20287a..945073ff4 100644 --- a/src/bornhack/settings.py +++ b/src/bornhack/settings.py @@ -220,7 +220,7 @@ UPCOMING_CAMP_YEAR = 2025 # django-tables2 settings -DJANGO_TABLES2_TEMPLATE = "django_tables2/bootstrap-responsive.html" +DJANGO_TABLES2_TEMPLATE = "django_tables2/bootstrap5-responsive.html" DJANGO_TABLES2_TABLE_ATTRS = { "class": "table table-hover table-striped", }