<tbody>
[% FOREACH l IN lists %]
[% SET shared_by_other = l.owner.id != logged_in_user %]
[% SET shared_by_other = l.owner.id != logged_in_user.id %]
<tr>
<td><a href="/cgi-bin/koha/patron_lists/list.pl?patron_list_id=[% l.patron_list_id %]">[% l.name |html%]</a></td>
<td>[% l.patron_list_patrons_rs.count || 0 %]</td>
my @lists = GetPatronLists();
$template->param(
$template->param( lists => \@lists );
lists => \@lists,
logged_in_user => $loggedinuser,
);
output_html_with_http_headers( $cgi, $cookie, $template->output );
-