reorganize plugins by plugin
[myslice.git] / plugins / lists / staticlist.py
diff --git a/plugins/lists/staticlist.py b/plugins/lists/staticlist.py
new file mode 100644 (file)
index 0000000..b9c644b
--- /dev/null
@@ -0,0 +1,29 @@
+from engine.plugin import Plugin
+
+class StaticList (Plugin) :
+
+    # only deal with our own stuff here and let Plugin handle the rest
+    def __init__ (self, list=[], with_datatables=False, **settings):
+        Plugin.__init__ (self, **settings)
+        self.list=list
+        self.with_datatables = with_datatables
+
+    # SimpleList is useless per se anyways
+    def template_file (self): 
+        return "staticlist.html"
+    
+    def template_env (self, request):
+        env={}
+        header=getattr(self,'header',None)
+        if header: env['header']=header
+        env['list']=self.list
+        return env
+
+    def requirements (self):
+        reqs = { 'js_files' : [ ] ,
+                 'css_files': [ "css/staticlist.css" ],
+                 }
+        if self.with_datatables:
+            reqs['js_files'].append ("datatables/js/dataTables.js")
+            reqs['js_files'].append ("js/with-datatables.js")
+        return reqs