renamed template() into template_file()
[myslice.git] / plugins / verticallayout.py
1 from django.template.loader import render_to_string
2
3 from engine.composite import Composite
4
5 class VerticalLayout (Composite) :
6     
7     def title (self) : return "VLayout title"
8
9     def template_file (self):        return "verticallayout.html"