Hi,
I am currently working on a project and I am trying to separate HTML code from Perl code completely, therefore HTML::Template is a suitable option.
However, I am having difficulties putting a <TMPL_LOOP> within another <TMPL_LOOP>. I tried numerous methods before returning to the documentation and realising that there was a small section devoted to nested loops. It provides an example for the perl side of things, however there is no example for the template side of things. I again tried numerous methods, with no luck, and I am still stumped.
Here is what I currently have:
I recieve the error " fatal error in loop output : HTML::Template : Attempt to set nonexistent parameter 'other'".
I am unsure how to nest loops and any example would be much appreciated.
Thank you,
Chris
I am currently working on a project and I am trying to separate HTML code from Perl code completely, therefore HTML::Template is a suitable option.
However, I am having difficulties putting a <TMPL_LOOP> within another <TMPL_LOOP>. I tried numerous methods before returning to the documentation and realising that there was a small section devoted to nested loops. It provides an example for the perl side of things, however there is no example for the template side of things. I again tried numerous methods, with no luck, and I am still stumped.
Here is what I currently have:
Code:
push(@{$print{'Buttons'}{'Button1'}}, {
'Action' => qq(Action),
'Name' => qq(ButtonName),
'Value' => qq(ButtonValue),
'Other' => [
{ 'testkey1' => 'testval1' },
{ 'testkey2' => 'testval2' }
]
});
$template->param ( BUTTON1 => \@{$print{'Buttons'}{'Button1'}} );
Code:
<TMPL_LOOP NAME=BUTTON1>
<form method="post" action="<TMPL_VAR NAME=ACTION>">
<input class="button" type="submit" name="<TMPL_VAR NAME=NAME>" value="<TMPL_VAR NAME=VALUE>" />
<TMPL_LOOP NAME=OTHER>
<p><TMPL_VAR NAME=TESTKEY1></p>
<p><TMPL_VAR NAME=TESTKEY2></p>
</TMPL_LOOP>
</form>
</TMPL_LOOP>
I recieve the error " fatal error in loop output : HTML::Template : Attempt to set nonexistent parameter 'other'".
I am unsure how to nest loops and any example would be much appreciated.
Thank you,
Chris