Scheduler: adding/removing resources enforce warnings and recount number of unconfigu...
[myslice.git] / portal / platformsview.py
index fee7397..c31cd17 100644 (file)
@@ -2,12 +2,13 @@ from manifold.core.query         import Query
 from unfold.page                 import Page
 
 from unfold.loginrequired       import FreeAccessView
-from ui.topmenu                  import topmenu_items, the_user
+from ui.topmenu                  import topmenu_items_live, the_user
 
 from plugins.querytable          import QueryTable
+from myslice.theme import ThemeView
 
 # View for platforms
-class PlatformsView(FreeAccessView):
+class PlatformsView(FreeAccessView, ThemeView):
     template_name = "platforms.html"
 
     def get_context_data(self, **kwargs):
@@ -26,6 +27,7 @@ class PlatformsView(FreeAccessView):
             query = platform_query,
             query_all = platform_query,
             checkboxes = False,
+            init_key   = 'platform',
             datatables_options = { 
                 'iDisplayLength': 10,
                 'bLengthChange' : True,
@@ -41,10 +43,10 @@ class PlatformsView(FreeAccessView):
         # more general variables expected in the template
         context['title'] = 'Platforms connected to MySlice'
         # the menu items on the top
-        context['topmenu_items'] = topmenu_items('Platforms', self.request)
+        context['topmenu_items'] = topmenu_items_live('Platforms', page)
         # so we can sho who is logged
         context['username'] = the_user(self.request)
-
+        context['theme'] = self.theme
         context.update(page.prelude_env())
 
         context['layout_1_or_2']="layout-unfold2.html" if not context['username'] else "layout-unfold1.html"