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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-restrictions-tab.inc (-1 / +10 lines)
Lines 80-86 Link Here
80
                        </select>
80
                        </select>
81
                    </li>
81
                    </li>
82
                [% END %]
82
                [% END %]
83
                <li><label for="rcomment">Comment:</label> <input type="text" id="rcomment" name="comment" /></li>
83
                <li>
84
                    <label for="rcomment">Comment:</label>
85
                    <input type="text" id="rcomment" list="rcomments" name="comment" />
86
                    <datalist id="rcomments">
87
                        [% FOREACH rcomment IN AuthorisedValues.Get( 'R_COMMENTS' ) %]
88
                            <option value="[% rcomment.lib | html %]">[% rcomment.lib | html %]</option>
89
                        [% END %]
90
                    </datalist>
91
                    <input type="submit" />
92
                </li>
84
                <li>
93
                <li>
85
                    <label for="rexpiration">Expiration:</label>
94
                    <label for="rexpiration">Expiration:</label>
86
                    <input name="expiration" id="rexpiration" size="20" value="" class="flatpickr" data-flatpickr-futuredate="true" type="text" />
95
                    <input name="expiration" id="rexpiration" size="20" value="" class="flatpickr" data-flatpickr-futuredate="true" type="text" />
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/authorised_values.tt (-1 / +2 lines)
Lines 545-550 Link Here
545
        >
545
        >
546
    [% CASE 'RESTRICTED' %]
546
    [% CASE 'RESTRICTED' %]
547
        <p>Restricted status of an item</p>
547
        <p>Restricted status of an item</p>
548
    [% CASE 'R_COMMENTS' %]
549
        <p>Values for custom patron restriction comments to pre-fill the manual restrictions. The value in the description field should be the message text and is limited to 200 characters</p>
548
    [% CASE 'ROADTYPE' %]
550
    [% CASE 'ROADTYPE' %]
549
        <p>Road types to be used in patron addresses</p>
551
        <p>Road types to be used in patron addresses</p>
550
    [% CASE 'SIP_MEDIA_TYPE' %]
552
    [% CASE 'SIP_MEDIA_TYPE' %]
551
- 

Return to bug 38776