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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc (-3 / +2 lines)
Lines 108-119 Link Here
108
            <td>[% hold.notes | html %]</td>
108
            <td>[% hold.notes | html %]</td>
109
            <td>
109
            <td>
110
                [% IF Koha.Preference('AllowHoldDateInFuture') %]
110
                [% IF Koha.Preference('AllowHoldDateInFuture') %]
111
                    <input type="text" class="datepicker" value="[% hold.date | $KohaDates %]" required name="reservedate">
111
                    <input type="text" class="datepicker" value="[% hold.date | $KohaDates %]" required="required" size="10" name="reservedate" />
112
                [% ELSE %]
112
                [% ELSE %]
113
                    [% hold.date | $KohaDates %]
113
                    [% hold.date | $KohaDates %]
114
                [% END %]
114
                [% END %]
115
            </td>
115
            </td>
116
            <td><input type="text" class="datepicker" value="[% hold.expirationdate | $KohaDates %]" name="expirationdate"></td>
116
            <td><input type="text" class="datepicker" value="[% hold.expirationdate | $KohaDates %]" size="10" name="expirationdate" /></td>
117
117
118
            <td>
118
            <td>
119
                [% IF ( hold.found ) %]
119
                [% IF ( hold.found ) %]
120
- 

Return to bug 22922