1 from unfold.plugin import Plugin
3 class SimpleList (Plugin) :
5 # only deal with our own stuff here and let Plugin handle the rest
6 def __init__ (self, key, with_datatables=False, **settings):
7 Plugin.__init__ (self, **settings)
9 self.with_datatables = with_datatables
11 # SimpleList is useless per se anyways
12 def template_file (self):
13 return "simplelist.html"
15 def template_env (self, request):
17 # would need some cleaner means to set a header here
18 header=getattr(self,'header',None)
19 if header: env['header']=header
20 env['with_datatables']= "yes" if self.with_datatables else ""
23 def requirements (self):
25 'js_files' : [ "js/simplelist.js",
26 "js/manifold.js", "js/manifold-query.js",
27 "js/spin.presets.js", "js/spin.min.js", "js/jquery.spin.js",
28 "js/unfold-helper.js",
30 'css_files': [ "css/simplelist.css" ],
32 if self.with_datatables:
33 reqs['js_files'].append ("js/dataTables.js")
34 reqs['js_files'].append ("js/with-datatables.js")
37 def json_settings_list (self): return ['plugin_uuid','query_uuid','key']