mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-05-10 22:03:09 +00:00
13 lines
262 B
Python
13 lines
262 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'
|