View | Details | Raw Unified | Return to bug 14244
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/issuehistory.tt (-3 / +4 lines)
Lines 38-44 $(document).ready(function() { Link Here
38
        <h4>Checked out [% total %] times</h4>
38
        <h4>Checked out [% total %] times</h4>
39
        <table id="table_issues">
39
        <table id="table_issues">
40
            <thead><tr>
40
            <thead><tr>
41
            [% IF Koha.Preference('intranetreadinghistory') %]
41
            [% IF Koha.Preference('intranetreadinghistory')
42
              AND CAN_user_circulate_circulate_remaining_permissions %]
42
            <th>Patron</th>
43
            <th>Patron</th>
43
            [% END %]
44
            [% END %]
44
            <th>Barcode</th>
45
            <th>Barcode</th>
Lines 51-57 $(document).ready(function() { Link Here
51
            <tbody>
52
            <tbody>
52
        [% FOREACH issue IN issues %]
53
        [% FOREACH issue IN issues %]
53
            <tr>
54
            <tr>
54
                [% IF Koha.Preference('intranetreadinghistory') %]
55
                [% IF Koha.Preference('intranetreadinghistory')
56
                  AND CAN_user_circulate_circulate_remaining_permissions %]
55
                <td><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% issue.borrowernumber %]">[% IF HidePatronName %][% issue.cardnumber %][% ELSE %][% issue.surname %][% IF ( issue.firstname ) %], [% issue.firstname %][% END %][% END %]</a></td>
57
                <td><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% issue.borrowernumber %]">[% IF HidePatronName %][% issue.cardnumber %][% ELSE %][% issue.surname %][% IF ( issue.firstname ) %], [% issue.firstname %][% END %][% END %]</a></td>
56
                [% END %]
58
                [% END %]
57
                <td>[% IF ( issue.barcode ) %]
59
                <td>[% IF ( issue.barcode ) %]
58
- 

Return to bug 14244