fix: crispy forms (#1194)

This commit is contained in:
Markos Gogoulos
2025-02-12 14:27:27 +02:00
committed by GitHub
parent a6a2b50c8d
commit 5402ee7bc5
3 changed files with 6 additions and 1 deletions

View File

@@ -304,6 +304,7 @@ INSTALLED_APPS = [
"debug_toolbar",
"mptt",
"crispy_forms",
"crispy_bootstrap5",
"uploader.apps.UploaderConfig",
"djcelery_email",
"ckeditor",
@@ -543,3 +544,6 @@ SPRITE_NUM_SECS = 10
SLIDESHOW_ITEMS = 30
# this calculation is redundant most probably, setting as an option
CALCULATE_MD5SUM = False
CRISPY_ALLOWED_TEMPLATE_PACKS = "bootstrap5"
CRISPY_TEMPLATE_PACK = "bootstrap5"