http://qs1969.pair.com?node_id=822344


in reply to Re^3: Template::Latex not interpolating variables . . .
in thread Template::Latex not interpolating variables . . .

Ahmed: Here is a quick sample of some sanitized data. The arrayref assigned to the 'upstream' key consists of anonymous hashes with essentially the same data and keys as are assigned to the email address key to the call_list hashref. My script walks recursively through the data to build that anonymous array of 'upstream sponsors' for my client's sales team.

This all looks right to me, but this is my first time using Template::Latex, though I have some experience with Template::Toolkit and HTML::Template.

Do you see what I'm missing here? I sure don't and have been stumped on this one for a couple of days.

Thanks for your help, for the second set of eyes.

-- Hugh

$VAR1 = { 'call_list' => { 'this_email@yahoo.com' => { 'phone3' => '', 'uid' => '5999', 'fname' => 'Lynn', 'name' => 'ljames', 'phones' => '917-555-1212', 'upstream' => [ { 'phones' => undef } ], 'lname' => 'James', 'phone1' => '917-555-1212', 'phone2' => '' }, 'another_email@yahoo.com' => {
if( $lal && $lol ) { $life++; }
if( $insurance->rationing() ) { $people->die(); }

Replies are listed 'Best First'.
Re^5: Template::Latex not interpolating variables . . .
by ahmad (Hermit) on Feb 10, 2010 at 18:53 UTC

    Your loop is wrong, you have emails as your hash keys and not the uid/fname etc you're trying to access directly.

    you'll have to try with an inner loop like this

    [% FOREACH customer IN call_list %] [% FOREACH info IN customer.value %] [% info.uid %] [% END %] [% END %]