X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=planetstack%2Fcore%2Fdashboard%2Fviews%2Fhome.py;h=6f57666c161ade5ad264e64fc1d9d5d21b6f7574;hb=d6a61aef42561ea138fcb7b192f3082e018b852b;hp=c0acfdf0995867139337cf4df977bee3149bc6dd;hpb=17ea69b28c8263ec174cbb8b9adbab57d17742b2;p=plstackapi.git diff --git a/planetstack/core/dashboard/views/home.py b/planetstack/core/dashboard/views/home.py index c0acfdf..6f57666 100644 --- a/planetstack/core/dashboard/views/home.py +++ b/planetstack/core/dashboard/views/home.py @@ -75,32 +75,37 @@ class DashboardDynamicView(TemplateView): dashboards.append(customize[0]) for i,view in enumerate(dashboards): + # don't display disabled dashboards + if (not view.enabled): + continue body = body + '
  • %s
  • \n' % (i, view.name) body = body + "\n" for i,view in enumerate(dashboards): + # don't display disabled dashboards + if (not view.enabled): + continue + url = view.url body = body + '
    \n' % i if (view.controllers.all().count()>0): body = body + '' - for j,controllerdashboard in enumerate(view.controllerdashboards.all()): - body = body + '
    \n' % (i,j,i) - body = body + self.embedDashboard(controllerdashboard.url); - body = body + '
    \n'; + for j,controllerdashboard in enumerate(view.controllerdashboardviews.all()): + body = body + '\n' % (i,j, self.embedDashboard(controllerdashboard.url)); + + body = body + '
    \n' % i body = body + """ """ % (i,i,i,i,i,i); else: