django-fobi/examples/simple/settings/bootstrap3_theme_captcha_feincms.py
2022-07-12 22:53:28 +02:00

19 lines
418 B
Python

from .bootstrap3_theme_feincms import *
INSTALLED_APPS = list(INSTALLED_APPS)
try:
if "captcha" not in INSTALLED_APPS:
INSTALLED_APPS.append("captcha")
if (
"fobi.contrib.plugins.form_elements.security.captcha"
not in INSTALLED_APPS
):
INSTALLED_APPS.append(
"fobi.contrib.plugins.form_elements.security.captcha"
)
except Exception as err:
pass