@@ -, +, @@ type descriptions - Make sure there are some holds for available items in your system - Go to Circulation > Holds to pull - Verify changes mentioned above in the list of holds shown --- koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt @@ -1,4 +1,6 @@ [% USE KohaDates %] +[%- USE Branches -%] +[%- USE ItemTypes -%] [% INCLUDE 'doc-head-open.inc' %] Koha › Circulation › Holds to pull [% INCLUDE 'doc-head-close.inc' %] @@ -123,14 +125,14 @@ $(document).ready(function() { " " [% END %] - [% reserveloo.holdingbranch %] + [% Branches.GetName ( reserveloo.holdingbranch ) %]

[% reserveloo.itemcallnumber %]

[% reserveloo.copyno %]

[% reserveloo.enumchron %]

- [% reserveloo.itype %] + [% ItemTypes.GetDescription( reserveloo.itype ) %] [% reserveloo.location %] - [% reserveloo.reservedate | $KohaDates %] in [% reserveloo.branch %] + [% reserveloo.reservedate | $KohaDates %] in [% Branches.GetName ( reserveloo.branch ) %] [% IF ( reserveloo.statusw ) %]

Waiting

[% END %][% IF ( reserveloo.statusf ) %]

Fullfilled

[% END %] --