[Zope] PageTemplates in Python

Jeremy Cowgar jc@cowgar.com
Sat, 8 Mar 2003 16:00:33 -0500


Greetings.

I am learning zope and have made my first working product to track people, 
however I want to use PageTemplates instead of DTML. Here is an example in my 
code:

class Person:
	...
	...
	index_html = DTMLFile('www/index_html', globals())
	...
	...

right there, I want to use a page template for index_html instead of a DTML 
file, how can I do that?

Thanks,

Jeremy