django-orchestra-test/orchestra/admin/dashboard.py

21 lines
474 B
Python
Raw Normal View History

2014-05-08 16:59:35 +00:00
from django.conf import settings
from orchestra.core import services
def generate_services_group():
models = []
for model, options in services.get().iteritems():
if options.get('menu', True):
models.append("%s.%s" % (model.__module__, model._meta.object_name))
settings.FLUENT_DASHBOARD_APP_GROUPS += (
('Services', {
'models': models,
'collapsible': True
}),
)
generate_services_group()