Hi.
I have multiple templates that include each other, such as :
t1.html :
...
<%include file="t2.html" args="docTitle='blablabla'" />
...
t2.html:
<%page args="docTitle='Undefined'"/>
<title>${docTitle}</title>
...
And what I want to do is to determine that t2 is included by t1 (or another one, so I can use its name). No specific way described in the documentation caught my eye, and I could've passed yet another argument (such as pagename='foobar'), but it feels more like a hack.
Is there a way to accomplish this, using a simple .render(blabla) call to render the page ?