forget about manage.py collectstatic and come up with our own brew
[myslice.git] / plugins / lists / slicelist.py
1 from plugins.lists.simplelist import SimpleList
2
3 # the SimpleList plugin requires 'key' and 'value' that are used 
4 # on the results of the query for rendering
5 class SliceList (SimpleList):
6     
7     def __init__ (self, **settings):
8         SimpleList.__init__(self, key='slice_hrn', **settings)
9
10     # writing a js plugin for that would be overkill, just use SimpleList
11     def plugin_classname (self):
12         return 'SimpleList'