Added resources to the platform description, fixed link in querytable for the init_ke...
[myslice.git] / portal / platformsview.py
index 6744643..8c7640b 100644 (file)
@@ -2,7 +2,7 @@ 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
 
@@ -18,7 +18,6 @@ class PlatformsView(FreeAccessView):
         page.enqueue_query(platform_query)
 
         page.expose_js_metadata()
-        page.expose_queries()
         platformlist = QueryTable(
             page  = page,
             title = 'List',
@@ -27,6 +26,7 @@ class PlatformsView(FreeAccessView):
             query = platform_query,
             query_all = platform_query,
             checkboxes = False,
+            init_key   = 'platform',
             datatables_options = { 
                 'iDisplayLength': 10,
                 'bLengthChange' : True,
@@ -42,7 +42,7 @@ 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)