Dennis Daupert wrote: > [% IF Users.size %] > [% FOREACH user IN Users %] > <h4>[% user %]</h4> > [% END %] > [% END %] You're almost there, you just need to display some field(s) from the user object: <h4>[% user.username %]</h4> -Andy