[ZPT] Simple ZPTFile question

Peter Bengtsson mail@peterbe.com
Wed, 13 Jun 2001 11:13:00 +0200


When in Python product development, you can import DTML documents with .dtml
like this:
manage_add_address_book_form = HTMLFile('dtml/address_book_add', globals())
or 
manage_add_address_book_form = DTMLFile('dtml/address_book_add', globals())

How do you do that equivalent with TAL defined pages?
I basically want to use the filesystem and TAL together.

I bet it's something obvious.

Peter