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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt (-3 / +10 lines)
Lines 2-7 Link Here
2
[% USE ItemTypes %]
2
[% USE ItemTypes %]
3
[% USE Branches %]
3
[% USE Branches %]
4
[% USE AuthorisedValues %]
4
[% USE AuthorisedValues %]
5
[% USE Koha %]
5
[% INCLUDE 'doc-head-open.inc' %]
6
[% INCLUDE 'doc-head-open.inc' %]
6
<title>Koha &rsaquo; Circulation &rsaquo; Holds queue</title>
7
<title>Koha &rsaquo; Circulation &rsaquo; Holds queue</title>
7
[% INCLUDE 'doc-head-close.inc' %]
8
[% INCLUDE 'doc-head-close.inc' %]
Lines 83-94 $(document).ready(function() { Link Here
83
            <td class="hq-enumchron">[% itemsloo.enumchron %]</td>
84
            <td class="hq-enumchron">[% itemsloo.enumchron %]</td>
84
            <td class="hq-barcode">
85
            <td class="hq-barcode">
85
                [% IF ( itemsloo.item_level_request ) %]
86
                [% IF ( itemsloo.item_level_request ) %]
86
			<em>Only Item:</em> <strong>[% itemsloo.barcode %]</strong>
87
                    <em>Only item:</em> <strong>[% itemsloo.barcode %]</strong>
87
                [% ELSE %]
88
                [% ELSE %]
88
                    <strong>[% itemsloo.barcode %]</strong> <em>or any available</em>
89
                    <strong>[% itemsloo.barcode %]</strong> <em>or any available</em>
89
                [% END %]
90
                [% END %]
90
            </td>
91
            </td>
91
			<td class="hq-patron"><p><a href="/cgi-bin/koha/circ/circulation.pl?findborrower=[% itemsloo.cardnumber %]#reserves">[% itemsloo.surname %], [% itemsloo.firstname %] ([% itemsloo.cardnumber %])</a></p> <p>[% itemsloo.phone %]</p></td>
92
            <td class="hq-patron">
93
              [% IF Koha.Preference('HidePatronName') %]
94
                <p><a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% itemsloo.borrowernumber %]#reserves">[% itemsloo.cardnumber %]</a></p> 
95
              [% ELSE %]
96
                <p><a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% itemsloo.borrowernumber %]#reserves">[% itemsloo.surname %], [% itemsloo.firstname %] ([% itemsloo.cardnumber %])</a></p> 
97
                <p>[% itemsloo.phone %]</p>
98
              [% END %]
99
            </td>
92
            <td class="hq-sendto">[% Branches.GetName( itemsloo.pickbranch ) %]</td>
100
            <td class="hq-sendto">[% Branches.GetName( itemsloo.pickbranch ) %]</td>
93
            <td class="hq-date"><span title="[% itemsloo.reservedate %]">[% itemsloo.reservedate | $KohaDates %]</span></td>
101
            <td class="hq-date"><span title="[% itemsloo.reservedate %]">[% itemsloo.reservedate | $KohaDates %]</span></td>
94
            <td class="hq-notes">[% itemsloo.notes %]</td>
102
            <td class="hq-notes">[% itemsloo.notes %]</td>
95
- 

Return to bug 12359