django-fobi/examples/simple/settings/bootstrap3_theme_captcha.py
2018-01-10 13:45:40 +01:00

22 lines
517 B
Python

from .base 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'
)
CAPTCHA_TEXT_FIELD_TEMPLATE = 'bootstrap3/captcha/text_field.html'
ENABLE_CAPTCHA = True
except Exception as e:
pass
# FOBI_DEFAULT_THEME = 'simple'