X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=portal%2Fplatformview.py;h=86d282b4d9b17d359e78203ca50c0af7d44fa501;hb=6525a09c12184206e7e90578d2e48d9b15006dba;hp=a432bc19375c3c56aa355841d8482a41c85d8487;hpb=1aea42c3668602aacfe22bc762ee939672129f53;p=myslice.git diff --git a/portal/platformview.py b/portal/platformview.py index a432bc19..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 myslice.viewutils 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 - - -