@@ -, +, @@ descriptions --- koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- 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,5 @@ [% USE KohaDates %] +[% USE AuthorisedValues %] [%- USE Branches -%] [%- USE ItemTypes -%] [% INCLUDE 'doc-head-open.inc' %] @@ -130,7 +131,7 @@ $(document).ready(function() {

[% reserveloo.copyno %]

[% reserveloo.enumchron %]

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

Waiting

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

Fullfilled

[% END %] --