rewrite simplelist to use a table (thus datatable-ready) instead of <ul> -- ctd
[myslice.git] / plugins / simplelist.py
index d4cefb1..d3ec876 100644 (file)
@@ -3,13 +3,21 @@ from engine.plugin import Plugin
 class SimpleList (Plugin) :
 
     # only deal with our own stuff here and let Plugin handle the rest
-    def __init__ (self, list=[], with_datatables=False, **settings):
+    def __init__ (self, key, value, with_datatables=False, **settings):
         Plugin.__init__ (self, **settings)
-        self.list=list
+        self.key=key
+        self.value=value
         self.with_datatables = with_datatables
 
     # SimpleList is useless per se anyways
-    def template_file (self): return "simplelist.html"
+    def template_file (self): 
+        return "simplelist.html"
+    
+    def template_env (self, request):
+        env={}
+        header=getattr(self,'header',None)
+        if header: env['header']=header
+        return env
 
     def requirements (self):
         reqs = { 'js_files' : [ "js/simplelist.js", "js/plugin.js", "js/query.js", "js/onavail.js",