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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt (-3 / +4 lines)
Lines 359-368 Link Here
359
                        [% IF hold %]
359
                        [% IF hold %]
360
                            [% IF hold.waitingdate %]
360
                            [% IF hold.waitingdate %]
361
                                Waiting at [% Branches.GetName( hold.branchcode ) | html %] since [% hold.waitingdate | $KohaDates %].
361
                                Waiting at [% Branches.GetName( hold.branchcode ) | html %] since [% hold.waitingdate | $KohaDates %].
362
                            [% ELSE %]
362
                            [% ELSIF hold.priority == 1 %]
363
                                Item-level hold (placed [% hold.reservedate | $KohaDates %]) for delivery at [% Branches.GetName( hold.branchcode ) | html %].
363
                                Item-level hold (placed [% hold.reservedate | $KohaDates %]) for delivery at [% Branches.GetName( hold.branchcode ) | html %].
364
                            [% ELSE %]
365
                                There is an item level hold on this item (priority = [% hold.priority %]).
364
                            [% END %]
366
                            [% END %]
365
                            [% IF ( canreservefromotherbranches ) %]
367
                            [% IF canreservefromotherbranches AND ( hold.waitingdate OR hold.priority == 1 ) %]
366
                                Hold for:
368
                                Hold for:
367
                                [% INCLUDE 'patron-title.inc' patron=hold.borrower hide_patron_infos_if_needed=1 %]
369
                                [% INCLUDE 'patron-title.inc' patron=hold.borrower hide_patron_infos_if_needed=1 %]
368
                            [% END %]
370
                            [% END %]
369
- 

Return to bug 20948