Files
pystache/examples/nested_context.py
T
2010-05-14 10:11:45 -07:00

11 lines
203 B
Python

import pystache
class NestedContext(pystache.View):
template_path = 'examples'
def outer_thing(self):
return "two"
def foo(self):
return {'thing1': 'one', 'thing2': 'foo'}