1 from plugins.lists.simplelist import SimpleList
3 class TestbedList (SimpleList):
5 def __init__ (self, **settings):
6 SimpleList.__init__(self, key='platform', classname='testbedlist', **settings)
8 # writing a js plugin for that would be overkill, just use SimpleList
9 def plugin_classname (self):
12 def requirements (self):
13 req = SimpleList.requirements(self)
14 req['css_files'] += [ 'css/testbedlist.css' ]