d487eec6be05d3dd29684e16bbcb54155d8e4502
[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'     : 'js/bootstrap.js',
7                  'css_files'    : ['css/bootstrap.css', 'css/tabs.css', ] 
8                  }
9
10     def template_file (self):
11         return "tabs.html"
12