mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-04-09 07:50:59 +00:00
16 lines
420 B
Python
16 lines
420 B
Python
from .base import *
|
|
|
|
INSTALLED_APPS = list(INSTALLED_APPS)
|
|
|
|
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
|
|
|
|
# FOBI_DEFAULT_THEME = 'simple'
|