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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/smart-rules.tt (-6 / +6 lines)
Lines 222-228 Link Here
222
                                    >
222
                                    >
223
                                    <td data-code="[% c | html %]">
223
                                    <td data-code="[% c | html %]">
224
                                        [% IF c == undef %]
224
                                        [% IF c == undef %]
225
                                            <em>All</em>
225
                                            <em>All patron categories</em>
226
                                        [% ELSE %]
226
                                        [% ELSE %]
227
                                            [% Categories.GetName(c) | html %]
227
                                            [% Categories.GetName(c) | html %]
228
                                        [% END %]
228
                                        [% END %]
Lines 444-450 Link Here
444
                        <td>2</td>
444
                        <td>2</td>
445
                        <td>
445
                        <td>
446
                            <select name="categorycode" id="categorycode">
446
                            <select name="categorycode" id="categorycode">
447
                                <option value="*">All</option>
447
                                <option value="*">All patron categories</option>
448
                                [% FOREACH patron_category IN patron_categories %]
448
                                [% FOREACH patron_category IN patron_categories %]
449
                                    <option value="[% patron_category.categorycode | html %]">[% patron_category.description | html %]</option>
449
                                    <option value="[% patron_category.categorycode | html %]">[% patron_category.description | html %]</option>
450
                                [% END %]
450
                                [% END %]
Lines 906-912 Link Here
906
                            <tr>
906
                            <tr>
907
                                <td>
907
                                <td>
908
                                    [% IF c == undef %]
908
                                    [% IF c == undef %]
909
                                        <em>All</em>
909
                                        <em>All patron categories</em>
910
                                    [% ELSE %]
910
                                    [% ELSE %]
911
                                        [% Categories.GetName(c) | html %]
911
                                        [% Categories.GetName(c) | html %]
912
                                    [% END %]
912
                                    [% END %]
Lines 937-943 Link Here
937
                <tr>
937
                <tr>
938
                    <td>
938
                    <td>
939
                        <select name="waiting_hold_cancellation_category" id="waiting_hold_cancellation_category">
939
                        <select name="waiting_hold_cancellation_category" id="waiting_hold_cancellation_category">
940
                            <option value="*">All</option>
940
                            <option value="*">All patron categories</option>
941
                            [% FOREACH patron_category IN patron_categories %]
941
                            [% FOREACH patron_category IN patron_categories %]
942
                                <option value="[% patron_category.categorycode | html %]">[% patron_category.description | html %]</option>
942
                                <option value="[% patron_category.categorycode | html %]">[% patron_category.description | html %]</option>
943
                            [% END %]
943
                            [% END %]
Lines 1047-1053 Link Here
1047
                            <tr>
1047
                            <tr>
1048
                                <td>
1048
                                <td>
1049
                                    [% IF c == undef %]
1049
                                    [% IF c == undef %]
1050
                                        <em>All</em>
1050
                                        <em>All patron categories</em>
1051
                                    [% ELSE %]
1051
                                    [% ELSE %]
1052
                                        [% Categories.GetName(c) | html %]
1052
                                        [% Categories.GetName(c) | html %]
1053
                                    [% END %]
1053
                                    [% END %]
Lines 1068-1074 Link Here
1068
                    <tr>
1068
                    <tr>
1069
                        <td>
1069
                        <td>
1070
                            <select name="article_request_fee_category" id="article_request_fee_category">
1070
                            <select name="article_request_fee_category" id="article_request_fee_category">
1071
                                <option value="*">All</option>
1071
                                <option value="*">All patron categories</option>
1072
                                [% FOREACH patron_category IN patron_categories %]
1072
                                [% FOREACH patron_category IN patron_categories %]
1073
                                    <option value="[% patron_category.categorycode | html %]">[% patron_category.description | html %]</option>
1073
                                    <option value="[% patron_category.categorycode | html %]">[% patron_category.description | html %]</option>
1074
                                [% END %]
1074
                                [% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep5.tt (-2 / +1 lines)
Lines 169-175 Link Here
169
                                    <label for="categorycode" class="required">Patron category: </label>
169
                                    <label for="categorycode" class="required">Patron category: </label>
170
                                    <select name="categorycode" id="categorycode" required="required">
170
                                    <select name="categorycode" id="categorycode" required="required">
171
                                        <option value=""> Choose</option>
171
                                        <option value=""> Choose</option>
172
                                        <option value="*" selected="selected">All</option>
172
                                        <option value="*" selected="selected">All patron categories</option>
173
                                        [% FOREACH category IN categories %]
173
                                        [% FOREACH category IN categories %]
174
                                            <option value = "[% category.categorycode | html %]"> [% category.description | html %]</option>
174
                                            <option value = "[% category.categorycode | html %]"> [% category.description | html %]</option>
175
                                        [%END%]
175
                                        [%END%]
176
- 

Return to bug 31736