Files
pystache/examples/inverted.py
Carl Whittaker c9dcb07630 Merge branch 'master' into development
Conflicts:
	examples/inverted.py
	pystache/template.py
	tests/test_pystache.py
	tests/test_view.py
2011-05-31 17:35:32 +01:00

29 lines
453 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'
def empty_list(self):
return []
def populated_list(self):
return ['some_value']
class InvertedLists(Inverted):
template_name = 'inverted'
def t(self):
return [0, 1, 2]
def f(self):
return []