django-fobi/examples/simple/settings/bootstrap3_theme_django_1_10_captcha.py
2016-11-24 23:34:11 +01:00

13 lines
383 B
Python
Executable file

from .base import *
INSTALLED_APPS = list(INSTALLED_APPS)
try:
INSTALLED_APPS.remove('south') if 'south' in INSTALLED_APPS else None
INSTALLED_APPS.remove('tinymce') if 'tinymce' in INSTALLED_APPS else None
INSTALLED_APPS.append('captcha')
INSTALLED_APPS.append(
'fobi.contrib.plugins.form_elements.security.captcha'
)
except Exception as err:
pass