hide dashboard views that are disabled from customize tab
authorScott Baker <smbaker@gmail.com>
Mon, 19 Jan 2015 05:30:10 +0000 (21:30 -0800)
committerScott Baker <smbaker@gmail.com>
Mon, 19 Jan 2015 05:30:10 +0000 (21:30 -0800)
planetstack/core/dashboard/views/view_common.py

index 9d979e6..e2b28a4 100644 (file)
@@ -50,6 +50,9 @@ def getDashboards(user):
 
     unused_dashboard_names = []
     for dashboardView in DashboardView.objects.all():
+        # do not show disabled dashboard views
+        if not dashboardView.enabled:
+            continue
         if not dashboardView.name in dashboard_names:
             unused_dashboard_names.append(dashboardView.name)