2017-05-16 21:20:11 +00:00
|
|
|
from .bootstrap3_theme_feincms import *
|
|
|
|
|
|
2017-06-12 22:19:13 +00:00
|
|
|
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")
|
2017-06-12 22:19:13 +00:00
|
|
|
|
2022-07-12 20:53:28 +00:00
|
|
|
if (
|
|
|
|
|
"fobi.contrib.plugins.form_elements.security.captcha"
|
|
|
|
|
not in INSTALLED_APPS
|
|
|
|
|
):
|
2017-06-12 22:19:13 +00:00
|
|
|
INSTALLED_APPS.append(
|
2022-07-12 20:53:28 +00:00
|
|
|
"fobi.contrib.plugins.form_elements.security.captcha"
|
2017-06-12 22:19:13 +00:00
|
|
|
)
|
|
|
|
|
|
2017-05-16 21:20:11 +00:00
|
|
|
except Exception as err:
|
|
|
|
|
pass
|