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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt (-1 / +2 lines)
Lines 50-55 $(document).ready(function() { Link Here
50
        <th class="hq-patron">Patron</th>
50
        <th class="hq-patron">Patron</th>
51
        <th class="hq-sendto">Send To</th>
51
        <th class="hq-sendto">Send To</th>
52
        <th class="hq-date">Date</th>
52
        <th class="hq-date">Date</th>
53
        <th class="hq-notes">Notes</th>
53
    </tr>
54
    </tr>
54
	</thead>
55
	</thead>
55
     <tbody>[% FOREACH itemsloo IN itemsloop %]
56
     <tbody>[% FOREACH itemsloo IN itemsloop %]
Lines 75-80 $(document).ready(function() { Link Here
75
			<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>
76
			<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>
76
            <td class="hq-sendto">[% itemsloo.pickbranch %]</td>
77
            <td class="hq-sendto">[% itemsloo.pickbranch %]</td>
77
            <td class="hq-date">[% itemsloo.reservedate %]</td>
78
            <td class="hq-date">[% itemsloo.reservedate %]</td>
79
            <td class="hq-notes">[% itemsloo.notes %]</td>
78
        </tr>
80
        </tr>
79
    [% END %]</tbody>
81
    [% END %]</tbody>
80
    </table>
82
    </table>
81
- 

Return to bug 7399