[ZPT] using ZPT as part of a product?

Dieter Maurer dieter@handshake.de
Sun, 12 Aug 2001 20:50:27 +0200 (CEST)


Chris Curvey writes:
 > I would like to be able to use ZPT in a Zope product that I'm
 > working on.  When I use DTML to render the interface, my code looks like
 > this:
 > 
 > from Globals import DTMLFile
 > 
 > class Minimal:
 >    <snip>
 >    index_html = DTMLFile("www/index_html", globals())
 >    <snip>

 from Products.PageTemplates import PageTableFile

may help you.



Dieter