From baf76d785869b3b760d71ae248ab428a571b7225 Mon Sep 17 00:00:00 2001 From: Fabian Braun Date: Mon, 8 Jul 2024 18:29:00 +0200 Subject: [PATCH] feat: Make bootstrap template the default for faster ramp-up (#63) --- backend/settings.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/settings.py b/backend/settings.py index 648a8763..f0c503f9 100644 --- a/backend/settings.py +++ b/backend/settings.py @@ -132,12 +132,12 @@ ) CMS_TEMPLATES = [ + # Default template that extend base.html, to be used with Bootstrap 5 + ('bootstrap5.html', 'Bootstrap 5 Demo'), + # a minimal template to get started with ('minimal.html', 'Minimal template'), - # optional templates that extend base.html, to be used with Bootstrap 5 - ('bootstrap5.html', 'Bootstrap 5 Demo'), - ('whitenoise-static-files-demo.html', 'Static File Demo'), ]