myslice.viewutils is a new place for holding stuff common to all views
[myslice.git] / plugins / simplelist.py
index 5a97fcb..202dc1b 100644 (file)
@@ -3,7 +3,15 @@ from engine.plugin import Plugin
 class SimpleList (Plugin) :
     
     def render_content (self):
-        return """<ul><li>hard-wired one</li><li>manual two</li>
-<li>this is defined</li>
+        return """<ul><li>this hard-wired list</li>
+<li>is defined</li>
 <li>in plugins.simplelist.py</li>
+<li>while it should of course</li>
+<li>instead issue a query</li>
+<li>and fill the DOM in js from there</li>
+<li>it would however maybe make sense</li>
+<li>to offer the option to 'datatablify'</li>
+<li>the list from the python code</li>
+<li>just like a standard plugin can be set as visible or not</li>
+<li>IMHO there should be explicit subclasses of SimpleList for slices or testbeds</li>
 </ul>"""