When you refer to something like item_hoh in the template, this is a key in the hash, not the name of the hash itself (TT2 knows nothing about the name — the hashref could also be anonymous). This isn't any different from using flat hashes to define/set TT2 variables, btw.
The solution is to just wrap another hash around it, e.g. an anonymous one (in my example above I used a named one, $HoH):
... TmplParams => { item_hoh => \%item_hoh },
The curlies create an anonymous hash(ref), and the value of the entry keyed by "item_hoh" is the ref to your hash %item_hoh. The name of the latter is irrelevant. In case you need to pass more top-level items (like the item_hoh), just add further entries in the anon hash.
In reply to Re^7: Perl CGI and Template Toolkit
by Eliya
in thread Perl CGI and Template Toolkit
by Perobl
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |