fix the tabs widget
[myslice.git] / plugins / tabs.py
1 from engine.composite import Composite
2
3 class Tabs (Composite):
4     
5     def title (self): 
6         return "Some tabs"
7
8     def requirements (self):
9         return { 'js_files'     : 'bootstrap/js/bootstrap.js',
10                  'css_files'    : 'bootstrap/css/bootstrap.css' }
11
12     def template (self):
13         return "tabs.html"
14     
15