in reply to Template display?

You're iterating over the hash, whose values are arrays, but you're not iterating over the arrays

You need to iterate over the arrays

Replies are listed 'Best First'.
Re^2: Template display?
by Anonymous Monk on Jun 20, 2012 at 13:49 UTC

    Untested

    [% BLOCK THE_SCOPE_OF_ROPE; FOREACH hash IN results.$key; SET open = hash.open IF hash.open; SET closed = hash.closed IF hash.closed; END; %] <td>[% open | html %]</td> <td>[% closed | html %]</td> [% END %]

    Though you probably want to use  IF hash.exists('open');