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 232-238 Link Here
232
                                    >
232
                                    >
233
                                    <td data-code="[% c | html %]">
233
                                    <td data-code="[% c | html %]">
234
                                        [% IF c == undef %]
234
                                        [% IF c == undef %]
235
                                            <em>All</em>
235
                                            <em>All patron categories</em>
236
                                        [% ELSE %]
236
                                        [% ELSE %]
237
                                            [% Categories.GetName(c) | html %]
237
                                            [% Categories.GetName(c) | html %]
238
                                        [% END %]
238
                                        [% END %]
Lines 454-460 Link Here
454
                        <td>2</td>
454
                        <td>2</td>
455
                        <td>
455
                        <td>
456
                            <select name="categorycode" id="categorycode">
456
                            <select name="categorycode" id="categorycode">
457
                                <option value="*">All</option>
457
                                <option value="*">All patron categories</option>
458
                                [% FOREACH patron_category IN patron_categories %]
458
                                [% FOREACH patron_category IN patron_categories %]
459
                                    <option value="[% patron_category.categorycode | html %]">[% patron_category.description | html %]</option>
459
                                    <option value="[% patron_category.categorycode | html %]">[% patron_category.description | html %]</option>
460
                                [% END %]
460
                                [% END %]
Lines 916-922 Link Here
916
                            <tr>
916
                            <tr>
917
                                <td>
917
                                <td>
918
                                    [% IF c == undef %]
918
                                    [% IF c == undef %]
919
                                        <em>All</em>
919
                                        <em>All patron categories</em>
920
                                    [% ELSE %]
920
                                    [% ELSE %]
921
                                        [% Categories.GetName(c) | html %]
921
                                        [% Categories.GetName(c) | html %]
922
                                    [% END %]
922
                                    [% END %]
Lines 947-953 Link Here
947
                <tr>
947
                <tr>
948
                    <td>
948
                    <td>
949
                        <select name="waiting_hold_cancellation_category" id="waiting_hold_cancellation_category">
949
                        <select name="waiting_hold_cancellation_category" id="waiting_hold_cancellation_category">
950
                            <option value="*">All</option>
950
                            <option value="*">All patron categories</option>
951
                            [% FOREACH patron_category IN patron_categories %]
951
                            [% FOREACH patron_category IN patron_categories %]
952
                                <option value="[% patron_category.categorycode | html %]">[% patron_category.description | html %]</option>
952
                                <option value="[% patron_category.categorycode | html %]">[% patron_category.description | html %]</option>
953
                            [% END %]
953
                            [% END %]
Lines 1061-1067 Link Here
1061
                            <tr>
1061
                            <tr>
1062
                                <td>
1062
                                <td>
1063
                                    [% IF c == undef %]
1063
                                    [% IF c == undef %]
1064
                                        <em>All</em>
1064
                                        <em>All patron categories</em>
1065
                                    [% ELSE %]
1065
                                    [% ELSE %]
1066
                                        [% Categories.GetName(c) | html %]
1066
                                        [% Categories.GetName(c) | html %]
1067
                                    [% END %]
1067
                                    [% END %]
Lines 1082-1088 Link Here
1082
                    <tr>
1082
                    <tr>
1083
                        <td>
1083
                        <td>
1084
                            <select name="article_request_fee_category" id="article_request_fee_category">
1084
                            <select name="article_request_fee_category" id="article_request_fee_category">
1085
                                <option value="*">All</option>
1085
                                <option value="*">All patron categories</option>
1086
                                [% FOREACH patron_category IN patron_categories %]
1086
                                [% FOREACH patron_category IN patron_categories %]
1087
                                    <option value="[% patron_category.categorycode | html %]">[% patron_category.description | html %]</option>
1087
                                    <option value="[% patron_category.categorycode | html %]">[% patron_category.description | html %]</option>
1088
                                [% END %]
1088
                                [% 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