Files
pystache/examples/inverted.py
T
2010-05-04 03:17:28 +08:00

14 lines
197 B
Python

import pystache
class Inverted(pystache.View):
template_path = 'examples'
def t(self):
return True
def f(self):
return False
def two(self):
return 'two'