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 (-2 / +3 lines)
Lines 542-548 Link Here
542
        [% CASE 'REPORT_SUBGROUP' %]
542
        [% CASE 'REPORT_SUBGROUP' %]
543
            <p>Can be used to further sort and filter your reports. This category is empty by default. Values here need to include the authorized value code from REPORT_GROUP in the Description (OPAC) field to link the subgroup to the appropriate group.</p>
543
            <p>Can be used to further sort and filter your reports. This category is empty by default. Values here need to include the authorized value code from REPORT_GROUP in the Description (OPAC) field to link the subgroup to the appropriate group.</p>
544
        [% CASE 'RESTRICTED' %]
544
        [% CASE 'RESTRICTED' %]
545
            <p>Restricted status of an item</p>
545
           <p>Restricted status of an item</p>
546
        [% CASE 'R_COMMENTS' %]
547
            <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>
546
        [% CASE 'ROADTYPE' %]
548
        [% CASE 'ROADTYPE' %]
547
            <p>Road types to be used in patron addresses</p>
549
            <p>Road types to be used in patron addresses</p>
548
        [% CASE 'SIP_MEDIA_TYPE' %]
550
        [% CASE 'SIP_MEDIA_TYPE' %]
549
- 

Return to bug 38776