mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-05-11 22:33:09 +00:00
19 lines
418 B
Python
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
|