render items using table or list
[MojoFacets.git] / templates / data / items / list.html.ep
1
2 % foreach my $row ( @$sorted ) {
3 <ul>
4 % foreach my $col ( @$columns ) {
5 %  next unless exists $row->{$col};
6 <li><%= $col %>: <%= ref $row->{$col} eq 'ARRAY' ? join(', ',@{ $row->{$col} }) : $row->{$col} %>
7 % }
8 </ul>
9 % }
10