[Zope] ZPT and here.container

J. Cameron Cooper jcc@jcameroncooper.com
Thu, 06 Feb 2003 14:44:31 -0600


>
>
>I was looking (in ZPT) for container of object on which template was used
>something "like" here.continer,
>does any one have any clues???
>  
>
I would imagine you're looking for something like this:

    <p>I am <span tal:replace="template/id">a template</span></p>
    <p>I applied to <span tal:replace="here/id">a folder</span></p>
    <p>The parent of what I am applied to is <span 
tal:replace="here/aq_parent/id">a parent folder</span></p>

          --jcc
    (i suppose)