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