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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/holds-table.inc (-11 / +6 lines)
Lines 104-121 Link Here
104
                            [% IF ( HOLD.is_waiting ) %]
104
                            [% IF ( HOLD.is_waiting ) %]
105
                                <i class="fa fa-exclamation-circle text-warning" aria-hidden="true"></i>
105
                                <i class="fa fa-exclamation-circle text-warning" aria-hidden="true"></i>
106
                                [% IF ( HOLD.is_at_destination ) %]
106
                                [% IF ( HOLD.is_at_destination ) %]
107
                                    [% IF ( HOLD.found ) %]
107
                                    Item waiting at <strong> [% HOLD.branch.branchname | html %]</strong>
108
                                        Item waiting at <strong> [% HOLD.branch.branchname | html %]</strong>
108
                                    [% IF ( HOLD.waitingdate ) %]
109
                                        [% IF ( HOLD.waitingdate ) %]
109
                                        since [% HOLD.waitingdate | $KohaDates %]
110
                                            since [% HOLD.waitingdate | $KohaDates %]
110
                                        [% IF HOLD.expirationdate %]
111
                                            [% IF HOLD.expirationdate %]
111
                                            until [% HOLD.expirationdate | $KohaDates %]
112
                                                until [% HOLD.expirationdate | $KohaDates %]
113
                                            [% END %]
114
                                        [% END %]
112
                                        [% END %]
115
                                        <input type="hidden" name="pickup" value="[% HOLD.branchcode | html %]" />
116
                                    [% ELSE %]
117
                                        Item waiting to be pulled from <strong> [% Branches.GetName( HOLD.branchcode ) | html %]</strong>
118
                                    [% END %]
113
                                    [% END %]
114
                                    <input type="hidden" name="pickup" value="[% HOLD.branchcode | html %]" />
119
                                [% ELSE %]
115
                                [% ELSE %]
120
                                    Item in transit to <strong> [% Branches.GetName( HOLD.branchcode ) | html %]</strong> <input type="hidden" name="pickup" value="[% HOLD.branchcode | html %]" />
116
                                    Item in transit to <strong> [% Branches.GetName( HOLD.branchcode ) | html %]</strong> <input type="hidden" name="pickup" value="[% HOLD.branchcode | html %]" />
121
                                [% END %]
117
                                [% END %]
122
- 

Return to bug 12556