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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt (-4 / +5 lines)
Lines 1-4 Link Here
1
[% USE KohaDates %]
1
[% USE KohaDates %]
2
[%- USE Branches -%]
3
[%- USE ItemTypes -%]
2
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
3
<title>Koha &rsaquo; Circulation &rsaquo; Holds to pull</title>
5
<title>Koha &rsaquo; Circulation &rsaquo; Holds to pull</title>
4
[% INCLUDE 'doc-head-close.inc' %]
6
[% INCLUDE 'doc-head-close.inc' %]
Lines 123-136 $(document).ready(function() { Link Here
123
            <td>"</td>
125
            <td>"</td>
124
            <td>"</td>
126
            <td>"</td>
125
        [% END %]
127
        [% END %]
126
        <td>[% reserveloo.holdingbranch %]</td>
128
        <td>[% Branches.GetName ( reserveloo.holdingbranch ) %]</td>
127
        <td><p>[% reserveloo.itemcallnumber %]</p></td>
129
        <td><p>[% reserveloo.itemcallnumber %]</p></td>
128
        <td><p>[% reserveloo.copyno %]</p></td>
130
        <td><p>[% reserveloo.copyno %]</p></td>
129
        <td><p>[% reserveloo.enumchron %]</p></td>
131
        <td><p>[% reserveloo.enumchron %]</p></td>
130
        <td>[% reserveloo.itype %]</td>
132
        <td>[% ItemTypes.GetDescription( reserveloo.itype ) %]</td>
131
        <td>[% reserveloo.location %]</td>
133
        <td>[% reserveloo.location %]</td>
132
        <td>
134
        <td>
133
            <span title="[% reserveloo.reservedate %]">[% reserveloo.reservedate | $KohaDates %] in [% reserveloo.branch %]</span>
135
            <span title="[% reserveloo.reservedate %]">[% reserveloo.reservedate | $KohaDates %] in [% Branches.GetName ( reserveloo.branch ) %]</span>
134
            [% IF ( reserveloo.statusw ) %]<p>Waiting</p>[% END %][% IF ( reserveloo.statusf ) %]<p>Fullfilled</p>[% END %]
136
            [% IF ( reserveloo.statusw ) %]<p>Waiting</p>[% END %][% IF ( reserveloo.statusf ) %]<p>Fullfilled</p>[% END %]
135
        </td>
137
        </td>
136
        </tr>
138
        </tr>
137
- 

Return to bug 12152