django-fobi/examples/simple/settings_bootstrap3_theme_captcha.py

11 lines
250 B
Python

from settings import *
INSTALLED_APPS = list(INSTALLED_APPS)
try:
INSTALLED_APPS.append('captcha')
INSTALLED_APPS.append('fobi.contrib.plugins.form_elements.security.captcha')
except Exception as e:
pass
#FOBI_DEFAULT_THEME = 'simple'