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 3-8 Link Here
3
[% USE Branches %]
3
[% USE Branches %]
4
[% USE AuthorisedValues %]
4
[% USE AuthorisedValues %]
5
[% USE ColumnsSettings %]
5
[% USE ColumnsSettings %]
6
[% USE Koha %]
6
[% INCLUDE 'doc-head-open.inc' %]
7
[% INCLUDE 'doc-head-open.inc' %]
7
<title>Koha &rsaquo; Circulation &rsaquo; Holds queue</title>
8
<title>Koha &rsaquo; Circulation &rsaquo; Holds queue</title>
8
[% INCLUDE 'doc-head-close.inc' %]
9
[% INCLUDE 'doc-head-close.inc' %]
Lines 173-184 $(document).ready(function() { Link Here
173
            <td class="hq-enumchron">[% itemsloo.enumchron %]</td>
174
            <td class="hq-enumchron">[% itemsloo.enumchron %]</td>
174
            <td class="hq-barcode">
175
            <td class="hq-barcode">
175
                [% IF ( itemsloo.item_level_request ) %]
176
                [% IF ( itemsloo.item_level_request ) %]
176
			<em>Only Item:</em> <strong>[% itemsloo.barcode %]</strong>
177
                    <em>Only item:</em> <strong>[% itemsloo.barcode %]</strong>
177
                [% ELSE %]
178
                [% ELSE %]
178
                    <strong>[% itemsloo.barcode %]</strong> <em>or any available</em>
179
                    <strong>[% itemsloo.barcode %]</strong> <em>or any available</em>
179
                [% END %]
180
                [% END %]
180
            </td>
181
            </td>
181
			<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>
182
            <td class="hq-patron">
183
              [% IF Koha.Preference('HidePatronName') %]
184
                <p><a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% itemsloo.borrowernumber %]#reserves">[% itemsloo.cardnumber %]</a></p>
185
              [% ELSE %]
186
                <p><a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% itemsloo.borrowernumber %]#reserves">[% itemsloo.surname %], [% itemsloo.firstname %] ([% itemsloo.cardnumber %])</a></p>
187
                <p>[% itemsloo.phone %]</p>
188
              [% END %]
189
            </td>
182
            <td class="hq-sendto">[% Branches.GetName( itemsloo.pickbranch ) %]</td>
190
            <td class="hq-sendto">[% Branches.GetName( itemsloo.pickbranch ) %]</td>
183
            <td class="hq-date"><span title="[% itemsloo.reservedate %]">[% itemsloo.reservedate | $KohaDates %]</span></td>
191
            <td class="hq-date"><span title="[% itemsloo.reservedate %]">[% itemsloo.reservedate | $KohaDates %]</span></td>
184
            <td class="hq-notes">[% itemsloo.notes %]</td>
192
            <td class="hq-notes">[% itemsloo.notes %]</td>
185
- 

Return to bug 12359