Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re^4: Template::Latex not interpolating variables . . .

by hesco (Deacon)
on Feb 10, 2010 at 03:38 UTC ( [id://822344]=note: print w/replies, xml ) Need Help??


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 %]

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://822344]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (6)
As of 2024-03-29 00:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found