I have a \[code\]Dwoo\[/code\] template - in example \[code\]base.html\[/code\] and there is an array \[code\]$data\[/code\].\[code\]{assign '' 'globalVar'} {* $globalVar empty right now *}{foreach $data element} {include '_partial.html'}{/foreach}...<b>{$globalVar}</b>\[/code\]And here is \[code\]_partial.html\[/code\]\[code\]<p> {$element.someText}</p>{assign "$globalVar $element.someVar" 'globalVar'}\[/code\]What I want to gain ? In every partial file I want to modify some \[code\]$globalVar\[/code\] that I want to use after \[code\]{foreach}\[/code\].And here is an important thing - I do not want to do the partial's \[code\]{assign}\[/code\] in \[code\]base.html\[/code\] ! Only in \[code\]_partial.html\[/code\].Is it possible to pass \[code\]$globalvar\[/code\] to \[code\]_partial.html\[/code\] by reference so partial file would modify this variable ?