diff options
author | Matthew Lemon <y@yulqen.org> | 2024-10-23 17:44:57 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-10-23 17:44:57 +0100 |
commit | a09bf4044e3fdeba7275e57153c14698ba848183 (patch) | |
tree | d4934b2e2c893b5370f34a6c0794ff7176fb2d5e | |
parent | 27033c7689033b1de62ada463565f2bbb1294191 (diff) |
put crispy back for now
-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 # ------------------------------------------------------------------------------ |