cleanup rendered html with new field names
[unfold.git] / plugins / simplelist.py
index 6e041c6..d49118d 100644 (file)
@@ -13,9 +13,7 @@ class SimpleList (Plugin) :
         self.add_to_settings ('with_datatables')
 
     # SimpleList is useless per se anyways
-    def title (self) : return "Title for Simple List"
-
-    def template (self): return "simplelist.html"
+    def template_file (self): return "simplelist.html"
 
     def requirements (self):
         reqs = { 'js_files' : [ "js/simplelist.js" ],
@@ -24,7 +22,6 @@ class SimpleList (Plugin) :
         if self.with_datatables:
             reqs['js_files'].append ("datatables/js/dataTables.js")
             reqs['js_files'].append ("js/with-datatables.js")
-        print self.classname(),reqs
         return reqs
 # for tests
 #                 'js_chunks' : "/* a javascript chunk */",