diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/settings/base.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/config/settings/base.py b/config/settings/base.py index e670482..81e0f82 100644 --- a/config/settings/base.py +++ b/config/settings/base.py @@ -71,6 +71,7 @@ DJANGO_APPS = [ ] THIRD_PARTY_APPS = [ "crispy_forms", + "crispy_bootstrap5", "allauth", "allauth.account", "allauth.mfa", @@ -200,8 +201,8 @@ TEMPLATES = [ FORM_RENDERER = "django.forms.renderers.TemplatesSetting" # http://django-crispy-forms.readthedocs.io/en/latest/install.html#template-packs -#CRISPY_TEMPLATE_PACK = "bootstrap5" -#CRISPY_ALLOWED_TEMPLATE_PACKS = "bootstrap5" +CRISPY_TEMPLATE_PACK = "bootstrap5" +CRISPY_ALLOWED_TEMPLATE_PACKS = "bootstrap5" # FIXTURES # ------------------------------------------------------------------------------ |