Fix: Contact email text formatting
[myslice.git] / portal / platformview.py
index 69fd1b0..86d282b 100644 (file)
@@ -2,9 +2,9 @@ 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.hazelnut            import Hazelnut
+from plugins.querytable          import QueryTable
 
 # View for 1 platform and its details
 class PlatformView(FreeAccessView):
@@ -24,8 +24,7 @@ class PlatformView(FreeAccessView):
         page.enqueue_query(network_query)
 
         page.expose_js_metadata()
-        page.expose_queries()
-        networklist = Hazelnut(
+        networklist = QueryTable(
             page  = page,
             title = 'List',
             domid = 'checkboxes',
@@ -54,13 +53,10 @@ class PlatformView(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.update(page.prelude_env())
 
         return context
-
-
-