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