mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-05-10 22:03:09 +00:00
17 lines
408 B
Python
17 lines
408 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
|