X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=portal%2Fplatformview.py;h=86d282b4d9b17d359e78203ca50c0af7d44fa501;hb=4575bfd54a282e47ca302e1348a93391a1915bc0;hp=16148ee2ed4fec1f7f0d74f1a9178d6090d815b6;hpb=33685b5e51564e1d4d61f32b2ab6be45436fb692;p=myslice.git diff --git a/portal/platformview.py b/portal/platformview.py index 16148ee2..86d282b4 100644 --- a/portal/platformview.py +++ b/portal/platformview.py @@ -1,19 +1,18 @@ -from django.views.generic.base import TemplateView - from manifold.core.query import Query from unfold.page import Page -from ui.topmenu import topmenu_items, the_user +from unfold.loginrequired import FreeAccessView +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(TemplateView): +class PlatformView(FreeAccessView): template_name = "platform.html" def get_context_data(self, **kwargs): page = Page(self.request) - + page.add_js_files ( [ "js/common.functions.js" ] ) for key, value in kwargs.iteritems(): print "%s = %s" % (key, value) if key == "platformname": @@ -25,8 +24,7 @@ class PlatformView(TemplateView): page.enqueue_query(network_query) page.expose_js_metadata() - page.expose_queries() - networklist = Hazelnut( + networklist = QueryTable( page = page, title = 'List', domid = 'checkboxes', @@ -35,9 +33,6 @@ class PlatformView(TemplateView): query_all = network_query, checkboxes = False, datatables_options = { - # for now we turn off sorting on the checkboxes columns this way - # this of course should be automatic in hazelnut - 'aoColumns' : [None, None, None, None, {'bSortable': False}], 'iDisplayLength' : 25, 'bLengthChange' : True, }, @@ -58,13 +53,10 @@ class PlatformView(TemplateView): # 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 - - -