Hello monks,
I'm having some trouble displaying a table.
The original code, cgi:
$account->{transactions} = [ map { { line => $_ } } @transactions ]; where @transactions is filled with tab-separated values.
I want to display the elements of @transactions as a nice 2 dimensional table. Hence my new code, with the TMPL_LOOP:
$account->{transactions} = [ map { { line => $_ } } @transactions ]; where @transactions is populated with array references: push @transactions, \[$date, $type, $amount, $new_balance];
and the TMPL bit:
<TABLE BORDER="1">
<TMPL_LOOP NAME="transactions">
<TR><TD>Transaction:</TD>
<TMPL_LOOP NAME="line">
<TD><TMPL_VAR NAME="date"></TD>
<TD><TMPL_VAR NAME="type"></TD>
<TD><TMPL_VAR NAME="amount"></TD>
<TD><TMPL_VAR NAME="balance"></TD>
</TMPL_LOOP>
</TR>
</TMPL_LOOP>
</TABLE>
I don't know wether to look into altering the tmpl file or if my datastructure is just plain wrong?
The error appearing on the browser is the following:
HTML::Template->output() : fatal error in loop output : Can't call met
+hod "isa" on unblessed reference at /users/jspinel/mylib/lib/perl5/HT
+ML/Template.pm line 2563.
at atm_choose.cgi line 15
Thank you!
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|