django-fobi/examples/simple/settings/bootstrap3_theme_captcha_feincms.py

20 lines
418 B
Python
Raw Normal View History

2017-05-16 21:20:11 +00:00
from .bootstrap3_theme_feincms import *
INSTALLED_APPS = list(INSTALLED_APPS)
2017-05-16 21:20:11 +00:00
try:
2022-07-12 20:53:28 +00:00
if "captcha" not in INSTALLED_APPS:
INSTALLED_APPS.append("captcha")
2022-07-12 20:53:28 +00:00
if (
"fobi.contrib.plugins.form_elements.security.captcha"
not in INSTALLED_APPS
):
INSTALLED_APPS.append(
2022-07-12 20:53:28 +00:00
"fobi.contrib.plugins.form_elements.security.captcha"
)
2017-05-16 21:20:11 +00:00
except Exception as err:
pass