X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=portal%2Fplatformview.py;h=a81ba871d97f9f45c552238b591319c61473a159;hb=c025814eadebf386f556f9af571d3f04e2124a80;hp=a432bc19375c3c56aa355841d8482a41c85d8487;hpb=4b0898259ce6c4795e752e05d9a04e9d4f88f501;p=myslice.git diff --git a/portal/platformview.py b/portal/platformview.py index a432bc19..a81ba871 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, 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": @@ -26,7 +25,7 @@ class PlatformView(TemplateView): page.expose_js_metadata() page.expose_queries() - networklist = Hazelnut( + networklist = QueryTable( page = page, title = 'List', domid = 'checkboxes', @@ -35,9 +34,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, },