views that do *not* require authentication need to inherit FreeAccessView
[myslice.git] / portal / platformsview.py
index 6f788be..0a6677e 100644 (file)
@@ -1,21 +1,20 @@
-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
 
 # View for platforms
-class PlatformsView(TemplateView):
+class PlatformsView(FreeAccessView):
     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()
@@ -28,13 +27,11 @@ class PlatformsView(TemplateView):
             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,
+                },
         )
 
         context = super(PlatformsView, self).get_context_data(**kwargs)