django-fobi/examples/simple/settings/bootstrap3_theme_captcha.py
2016-10-17 03:30:09 +02:00

11 lines
247 B
Python

from .base 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'