I often find it helpful to think about the template first and then see what the data structure that fills it would have to look like. This is how I'd write a template for the output you want:
<ul> <TMPL_LOOP states> <li> <TMPL_VAR state> <ul> <TMPL_LOOP people> <li> <TMPL_VAR person> </TMPL_LOOP> </ul> </TMPL_LOOP> </ul>
Now that we know where the loops and vars go, we can figure out what kind of data structure we need. TMPL_LOOPs need something like loop_name => [ { .. }, { .. }, .. ]. (A reference to an array of hash references). TMPL_VARs just need var_name => "scalar". So in order to fill out this template, you'll need data that is structured like this:
my @states = ( { state => "Alaska", people => [ { person => "Joe Blow" }, { person => "Peter TorkM" } ] }, { state => "California", people => [ { person => "Lily White }, { person => "Erik Svendater" } ] }, ... ); $tmpl->param( states => \@states );
If you have your data already in some other form, and have questions about how to get it into a data structure like this, let us know and we can probably help with that too..

blokhead


In reply to Re: HTML::Template Loop Question by blokhead
in thread HTML::Template Loop Question by theAcolyte

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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, details, 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, summary, 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.