In the code below, what shoule bound_names be if I want the output to be "<p>content</p>" ?? --- from PageTemplates.PageTemplate import PageTemplate p = PageTemplate() bound_names = ???? p.write('<p tal:content="here/foo | default">bar</p>') p(extra_context=bound_names) --- /Magnus