1 from engine.plugin import Plugin
3 class StaticList (Plugin) :
5 # only deal with our own stuff here and let Plugin handle the rest
6 def __init__ (self, list=[], 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 "staticlist.html"
15 def template_env (self, request):
17 header=getattr(self,'header',None)
18 if header: env['header']=header
22 def requirements (self):
23 reqs = { 'js_files' : [ ] ,
24 'css_files': [ "css/staticlist.css" ],
26 if self.with_datatables:
27 reqs['js_files'].append ("datatables/js/dataTables.js")
28 reqs['js_files'].append ("js/with-datatables.js")