in reply to Re^4: HTML::Template question
in thread HTML::Template question

Maybe something like this:
for my $dif_schedule ( @schedule ) { my @cols; for my $i ( 0 .. $scheduled_export_days ) { push( @cols, { SCHEDULE => $dif_schedule } ); } push ( @schedule_rows_loop, { SCHEDULE_COLUMNS => \@cols } ); }

Replies are listed 'Best First'.
Re^6: HTML::Template question
by iRemix94 (Sexton) on Jul 22, 2015 at 09:36 UTC

    Thank you, that helped me a lot!