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