X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=portal%2Fplatformsview.py;h=c31cd174510dc8f5ed0ce0b53aca978e2c5d98ec;hb=refs%2Fheads%2Fonelab;hp=ddc96892885ce81b0c2f48123f0557d509d4aa31;hpb=33685b5e51564e1d4d61f32b2ab6be45436fb692;p=myslice.git diff --git a/portal/platformsview.py b/portal/platformsview.py index ddc96892..c31cd174 100644 --- a/portal/platformsview.py +++ b/portal/platformsview.py @@ -1,26 +1,25 @@ -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 +from myslice.theme import ThemeView # View for platforms -class PlatformsView(TemplateView): +class PlatformsView(FreeAccessView, ThemeView): template_name = "platforms.html" def get_context_data(self, **kwargs): page = Page(self.request) - - #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.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() - platformlist = Hazelnut( + platformlist = QueryTable( page = page, title = 'List', domid = 'checkboxes', @@ -28,6 +27,7 @@ class PlatformsView(TemplateView): query = platform_query, query_all = platform_query, checkboxes = False, + init_key = 'platform', datatables_options = { 'iDisplayLength': 10, 'bLengthChange' : True, @@ -43,10 +43,12 @@ class PlatformsView(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['theme'] = self.theme context.update(page.prelude_env()) + context['layout_1_or_2']="layout-unfold2.html" if not context['username'] else "layout-unfold1.html" + return context