forget about manage.py collectstatic and come up with our own brew
[unfold.git] / plugins / tabs / tabs.py
1 from engine.composite import Composite
2
3 class Tabs (Composite):
4     
5     def requirements (self):
6         return { 'js_files'     : 'js/bootstrap.js',
7                  'css_files'    : ['css/bootstrap.css', 'css/tabs.css', ] 
8                  }
9
10     def template_file (self):
11         return "tabs.html"
12