X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=portal%2Fplatformsview.py;h=67446436d828ea7409a7787c72db5a34c52f137b;hb=83f238a32f62a34370f24d69e85823c709d95627;hp=7c83d9421581eb8a3a14376a0b33e1b3331df017;hpb=5fa503e8ad5b16353ddb8b88eaa914c7a4ee5748;p=myslice.git diff --git a/portal/platformsview.py b/portal/platformsview.py index 7c83d942..67446436 100644 --- a/portal/platformsview.py +++ b/portal/platformsview.py @@ -1,52 +1,42 @@ -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 platforms -class PlatformsView(TemplateView): +class PlatformsView(FreeAccessView): template_name = "platforms.html" def get_context_data(self, **kwargs): page = Page(self.request) - - #network_query = Query().get('local:platform').filter_by('disabled', '==', '0').select('platform','platform_longname','gateway_type') - network_query = Query().get('local:platform').select('platform','platform_longname','gateway_type') - page.enqueue_query(network_query) + page.add_js_files ( [ "js/common.functions.js" ] ) + platform_query = Query().get('local:platform').filter_by('disabled', '==', '0').select('platform','platform_longname','gateway_type') + #platform_query = Query().get('local:platform').select('platform','platform_longname','gateway_type') + page.enqueue_query(platform_query) page.expose_js_metadata() page.expose_queries() - networklist = Hazelnut( + platformlist = QueryTable( page = page, title = 'List', domid = 'checkboxes', # this is the query at the core of the slice list - query = network_query, - query_all = network_query, + query = platform_query, + query_all = platform_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, - }, + datatables_options = { + 'iDisplayLength': 10, + 'bLengthChange' : True, + 'bAutoWidth' : True, + }, ) -# -# networklist = SimpleList( -# title = None, -# page = page, -# key = 'platform', -# query = network_query, -# ) context = super(PlatformsView, self).get_context_data(**kwargs) context['person'] = self.request.user - context['networks'] = networklist.render(self.request) + context['platforms'] = platformlist.render(self.request) # XXX This is repeated in all pages # more general variables expected in the template @@ -58,4 +48,6 @@ class PlatformsView(TemplateView): context.update(page.prelude_env()) + context['layout_1_or_2']="layout-unfold2.html" if not context['username'] else "layout-unfold1.html" + return context