X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=plugins%2Fsimplelist.py;h=a9ae38d042397c3a2edab749661cedd985626a51;hb=54a5954fbb6d77b012bbe198c7d492989c1f1585;hp=371e5d6cd3d19e44b2110cb49675c119c850bf8f;hpb=058958cdd4f1d5f2f5da50e8dd988c5e623f41d8;p=unfold.git diff --git a/plugins/simplelist.py b/plugins/simplelist.py index 371e5d6c..a9ae38d0 100644 --- a/plugins/simplelist.py +++ b/plugins/simplelist.py @@ -3,14 +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, key, value, with_datatables=False, **settings): + def __init__ (self, key, with_datatables=False, **settings): Plugin.__init__ (self, **settings) 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 + env['with_datatables']= "yes" if self.with_datatables else "" + return env def requirements (self): reqs = { 'js_files' : [ "js/simplelist.js", "js/plugin.js", "js/query.js", "js/onavail.js", @@ -23,5 +30,5 @@ class SimpleList (Plugin) : reqs['js_files'].append ("js/with-datatables.js") return reqs - def json_settings_list (self): return ['plugin_uuid', 'query','query_uuid','key','value'] + def json_settings_list (self): return ['plugin_uuid', 'query','query_uuid','key']