mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-05-11 06:13:10 +00:00
12 lines
369 B
Python
12 lines
369 B
Python
|
|
from settings 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 e:
|
||
|
|
pass
|