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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-patron-search-results.inc (-2 / +2 lines)
Lines 31-38 Link Here
31
                    <td><a href="/cgi-bin/koha/reserve/request.pl?borrowernumber=[% borrower.borrowernumber %]&amp;biblionumber=[% biblionumber %]">[% borrower.surname %], [% borrower.firstname %]</a></td>
31
                    <td><a href="/cgi-bin/koha/reserve/request.pl?borrowernumber=[% borrower.borrowernumber %]&amp;biblionumber=[% biblionumber %]">[% borrower.surname %], [% borrower.firstname %]</a></td>
32
            [% END %]
32
            [% END %]
33
                <td>[% borrower.cardnumber %]</td>
33
                <td>[% borrower.cardnumber %]</td>
34
                <td>[% borrower.categorycode %]</td>
34
                <td>[% Categories.GetName( borrower.categorycode ) %]</td>
35
                <td>[% borrower.branchcode %]</td>
35
                <td>[% Branches.GetName( borrower.branchcode ) %]</td>
36
                <td>[% borrower.address %]</td>
36
                <td>[% borrower.address %]</td>
37
            </tr>
37
            </tr>
38
        [% END %]
38
        [% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (+1 lines)
Lines 1-6 Link Here
1
[% USE Koha %]
1
[% USE Koha %]
2
[% USE Branches %]
2
[% USE Branches %]
3
[% USE KohaDates %]
3
[% USE KohaDates %]
4
[% USE Categories %]
4
[% USE ColumnsSettings %]
5
[% USE ColumnsSettings %]
5
[% USE ItemTypes %]
6
[% USE ItemTypes %]
6
[% USE Price %]
7
[% USE Price %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt (-1 / +2 lines)
Lines 1-5 Link Here
1
[% USE Koha %]
1
[% USE Koha %]
2
[% USE KohaDates %]
2
[% USE KohaDates %]
3
[% USE Branches %]
4
[% USE Categories %]
3
[% USE ItemTypes %]
5
[% USE ItemTypes %]
4
[% INCLUDE 'doc-head-open.inc' %]
6
[% INCLUDE 'doc-head-open.inc' %]
5
[% UNLESS ( multi_hold ) %]
7
[% UNLESS ( multi_hold ) %]
6
- 

Return to bug 16596