Link Here
|
|
|
1 |
[% USE Koha %] |
1 |
[%# duplicates circ-menu.inc but assumes all borrower attributes are in a borrower variable rather than |
2 |
[%# duplicates circ-menu.inc but assumes all borrower attributes are in a borrower variable rather than |
2 |
in the global namespace %] |
3 |
in the global namespace %] |
3 |
[% IF borrower %] |
4 |
[% IF borrower %] |
Link Here
|
66 |
<div id="menu"> |
67 |
<div id="menu"> |
67 |
<ul> |
68 |
<ul> |
68 |
[% IF ( circview ) %]<li class="active">[% ELSE %]<li>[% END %]<a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% borrower.borrowernumber %]">Check out</a></li> |
69 |
[% IF ( circview ) %]<li class="active">[% ELSE %]<li>[% END %]<a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% borrower.borrowernumber %]">Check out</a></li> |
|
|
70 |
[% IF Koha.Preference('batch_checkouts').split('\|').grep(borrower.categorycode).size > 0 %] |
71 |
[% IF ( batch_checkout_view ) %]<li class="active">[% ELSE %]<li>[% END %]<a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% borrower.borrowernumber %]&batch=1">Batch check out</a></li> |
72 |
[% END %] |
69 |
[% IF ( CAN_user_borrowers ) %] |
73 |
[% IF ( CAN_user_borrowers ) %] |
70 |
[% IF ( detailview ) %]<li class="active">[% ELSE %]<li>[% END %]<a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% borrower.borrowernumber %]">Details</a></li> |
74 |
[% IF ( detailview ) %]<li class="active">[% ELSE %]<li>[% END %]<a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% borrower.borrowernumber %]">Details</a></li> |
71 |
[% END %] |
75 |
[% END %] |
72 |
- |
|
|