Lines 747-753
Link Here
|
747 |
[% CASE 'add' %] |
747 |
[% CASE 'add' %] |
748 |
action_node += '<a href="#" class="btn btn-default btn-xs add_user" data-borrowernumber="' + patron_id + '">' + _("Add") + '</a>'; |
748 |
action_node += '<a href="#" class="btn btn-default btn-xs add_user" data-borrowernumber="' + patron_id + '">' + _("Add") + '</a>'; |
749 |
[% CASE 'edit' %] |
749 |
[% CASE 'edit' %] |
750 |
action_node += '<a href="/cgi-bin/koha/members/memberentry.pl?op=edit_form&destination=circ&borrowernumber=' + patron_id + '" class="btn btn-default btn-xs"><i class="fa-solid fa-pencil" aria-hidden="true"></i> ' + _("Edit") + '</a>'; |
750 |
[% IF CAN_user_borrowers_edit_borrowers %] |
|
|
751 |
action_node += '<a href="/cgi-bin/koha/members/memberentry.pl?op=edit_form&destination=circ&borrowernumber=' + patron_id + '" class="btn btn-default btn-xs"><i class="fa-solid fa-pencil" aria-hidden="true"></i> ' + _("Edit") + '</a>'; |
752 |
[% END %] |
751 |
[% CASE 'checkout' %] |
753 |
[% CASE 'checkout' %] |
752 |
[% IF CAN_user_circulate_circulate_remaining_permissions %] |
754 |
[% IF CAN_user_circulate_circulate_remaining_permissions %] |
753 |
action_node += '<a class="btn btn-default btn-xs" href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=' + patron_id + '"><i class="fa fa-barcode"></i> ' + _("Check out") + '</a>'; |
755 |
action_node += '<a class="btn btn-default btn-xs" href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=' + patron_id + '"><i class="fa fa-barcode"></i> ' + _("Check out") + '</a>'; |
754 |
- |
|
|