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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/holds-table.inc (-3 / +10 lines)
Lines 66-77 Link Here
66
                    [% END %]
66
                    [% END %]
67
                </td>
67
                </td>
68
                <td class="reservedate" data-order="[% HOLD.reservedate | html %]">
68
                <td class="reservedate" data-order="[% HOLD.reservedate | html %]">
69
                    [% HOLD.reservedate | $KohaDates %]
69
                    [% IF Koha.Preference('HourBasedHolds') %]
70
                        [% HOLD.reservedate | $KohaDates with_hours = 1 %]
71
                    [% ELSE %]
72
                        [% HOLD.reservedate | $KohaDates %]
73
                    [% END %]
70
                </td>
74
                </td>
71
                [% IF ! HOLD.found %]
75
                [% IF ! HOLD.found %]
72
                    <td class="expirationdate" data-order="[% HOLD.expirationdate | html %]">
76
                    <td class="expirationdate" data-order="[% HOLD.expirationdate | html %]">
73
                        [% IF ( HOLD.expirationdate ) %]
77
                        [% IF ( HOLD.expirationdate ) %]
74
                            [% HOLD.expirationdate | $KohaDates %]
78
                            [% IF Koha.Preference('HourBasedHolds') %]
79
                                [% HOLD.expirationdate | $KohaDates with_hours = 1 %]
80
                            [% ELSE %]
81
                                [% HOLD.expirationdate | $KohaDates %]
82
                            [% END %]
75
                        [% ELSE %]
83
                        [% ELSE %]
76
                            Never expires
84
                            Never expires
77
                        [% END %]
85
                        [% END %]
78
- 

Return to bug 24718