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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt (-3 / +3 lines)
Lines 1-5 Link Here
1
[% USE KohaDates %]
1
[% USE KohaDates %]
2
[% USE ItemTypes %]
2
[% USE ItemTypes %]
3
[% USE Branches %]
3
[% USE AuthorisedValues %]
4
[% USE AuthorisedValues %]
4
[% INCLUDE 'doc-head-open.inc' %]
5
[% INCLUDE 'doc-head-open.inc' %]
5
<title>Koha &rsaquo; Circulation &rsaquo; Holds queue</title>
6
<title>Koha &rsaquo; Circulation &rsaquo; Holds queue</title>
Lines 77-83 $(document).ready(function() { Link Here
77
			</td>
78
			</td>
78
            <td class="hq-collection">[% AuthorisedValues.GetByCode( 'CCODE', itemsloo.ccode ) %]</td>
79
            <td class="hq-collection">[% AuthorisedValues.GetByCode( 'CCODE', itemsloo.ccode ) %]</td>
79
            <td class="hq-itemtype">[% ItemTypes.GetDescription( itemsloo.itype ) %]</td>
80
            <td class="hq-itemtype">[% ItemTypes.GetDescription( itemsloo.itype ) %]</td>
80
            <td class="hq-callnumber">[% itemsloo.location %] [% itemsloo.itemcallnumber %]</td>
81
            <td class="hq-callnumber">[% IF ( itemsloo.location ) %]<em>[% AuthorisedValues.GetByCode( 'LOC', itemsloo.location ) %]</em> [% END %][% itemsloo.itemcallnumber %]</td>
81
            <td class="hq-copynumber">[% itemsloo.copynumber %]</td>
82
            <td class="hq-copynumber">[% itemsloo.copynumber %]</td>
82
            <td class="hq-enumchron">[% itemsloo.enumchron %]</td>
83
            <td class="hq-enumchron">[% itemsloo.enumchron %]</td>
83
            <td class="hq-barcode">
84
            <td class="hq-barcode">
Lines 88-94 $(document).ready(function() { Link Here
88
                [% END %]
89
                [% END %]
89
            </td>
90
            </td>
90
			<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>
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>
91
            <td class="hq-sendto">[% itemsloo.pickbranch %]</td>
92
            <td class="hq-sendto">[% Branches.GetName( itemsloo.pickbranch ) %]</td>
92
            <td class="hq-date"><span title="[% itemsloo.reservedate %]">[% itemsloo.reservedate | $KohaDates %]</span></td>
93
            <td class="hq-date"><span title="[% itemsloo.reservedate %]">[% itemsloo.reservedate | $KohaDates %]</span></td>
93
            <td class="hq-notes">[% itemsloo.notes %]</td>
94
            <td class="hq-notes">[% itemsloo.notes %]</td>
94
        </tr>
95
        </tr>
95
- 

Return to bug 10960