bba218444e
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
36 lines
1.7 KiB
HTML
36 lines
1.7 KiB
HTML
[% USE KohaDates %]
|
|
<legend>Patron selection</legend>
|
|
<table id="table_borrowers" class="table_borrowers">
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Card number</th>
|
|
<th>Date of birth</th>
|
|
<th>Category</th>
|
|
<th>Library</th>
|
|
<th>Address</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
[% FOREACH borrower IN borrowers %]
|
|
[% IF destination == "circ" %]
|
|
<tr class="clickable" data-url="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% borrower.borrowernumber %]">
|
|
<td><a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% borrower.borrowernumber %]">[% borrower.surname %], [% borrower.firstname %]</a></td>
|
|
[% ELSIF destination == "holds" %]
|
|
[% IF multi_hold %]
|
|
[% SET data_url = "/cgi-bin/koha/reserve/request.pl?borrowernumber=" _ borrower.borrowernumber _ "&multi_hold=1&biblionumbers=" _ biblionumbers %]
|
|
[% ELSE %]
|
|
[% SET data_url = "/cgi-bin/koha/reserve/request.pl?borrowernumber=" _ borrower.borrowernumber _ "&biblionumber=" _ biblionumber %]
|
|
[% END %]
|
|
<tr class="clickable" data-url="[% data_url %]">
|
|
<td><a href="[% data_url %]">[% borrower.surname %], [% borrower.firstname %]</a></td>
|
|
[% END %]
|
|
<td>[% borrower.cardnumber %]</td>
|
|
<td>[% borrower.dateofbirth | $KohaDates %]</td>
|
|
<td>[% Categories.GetName( borrower.categorycode ) %]</td>
|
|
<td>[% Branches.GetName( borrower.branchcode ) %]</td>
|
|
<td>[% borrower.address %]</td>
|
|
</tr>
|
|
[% END %]
|
|
</tbody>
|
|
</table>
|