django-fobi/examples/simple/settings/bootstrap3_theme_mptt.py

18 lines
418 B
Python
Raw Normal View History

2016-10-17 01:30:09 +00:00
from .base import *
INSTALLED_APPS = list(INSTALLED_APPS)
try:
INSTALLED_APPS.append('mptt')
INSTALLED_APPS.append('bar')
INSTALLED_APPS.append(
'fobi.contrib.plugins.form_elements.fields.'
'select_mptt_model_object'
)
INSTALLED_APPS.append(
'fobi.contrib.plugins.form_elements.fields.'
'select_multiple_mptt_model_objects'
)
except Exception as err:
pass