Wednesday 31 March 2010 1:25:05 am
Does your template1.tpl call your template2.tpl ?
In this case you can pass variable to template2.tpl when you call it. An an example if template2.tpl is a view line :
{node_view_gui content_node=$mynode view='line' myvar='foo' myvar2='bar'} You can do the same way with a template include
{include uri="design:template2.tpl" myvar='foo' myvar2='bar'}
|