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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categories.tt (-7 / +6 lines)
Lines 151-159 Link Here
151
                    </select>
151
                    </select>
152
                    <span class="required">Required</span>
152
                    <span class="required">Required</span>
153
                </li>
153
                </li>
154
                <li><label for="branches">Branches limitation: </label>
154
                <li><label for="branches">Library limitations: </label>
155
                    <select id="branches" name="branches" multiple size="10">
155
                    <select id="branches" name="branches" multiple size="10">
156
                        <option value="">All branches</option>
156
                        <option value="">All libraries</option>
157
                        [% FOREACH branch IN branches_loop %]
157
                        [% FOREACH branch IN branches_loop %]
158
                          [% IF branch.selected %]
158
                          [% IF branch.selected %]
159
                            <option selected="selected" value="[% branch.branchcode | html %]">[% branch.branchname | html %]</option>
159
                            <option selected="selected" value="[% branch.branchcode | html %]">[% branch.branchname | html %]</option>
Lines 162-168 Link Here
162
                          [% END %]
162
                          [% END %]
163
                        [% END %]
163
                        [% END %]
164
                    </select>
164
                    </select>
165
                    <span>Select <i>All branches</i> if this category type must to be displayed all the time. Otherwise select libraries you want to associate with this value.
165
                    <span>Select <i>All libraries</i> if this category type must to be displayed all the time. Otherwise select libraries you want to associate with this value.
166
                    </span>
166
                    </span>
167
                </li>
167
                </li>
168
                <li>
168
                <li>
Lines 418-424 Link Here
418
                    [% IF ( EnhancedMessagingPreferences ) %]
418
                    [% IF ( EnhancedMessagingPreferences ) %]
419
                    <th scope="col">Messaging</th>
419
                    <th scope="col">Messaging</th>
420
                    [% END %]
420
                    [% END %]
421
                    <th scope="col">Branches limitations</th>
421
                    <th scope="col">Library limitations</th>
422
                    [% IF ( Koha.Preference('CheckPrevCheckout') == 'softyes' || Koha.Preference('CheckPrevCheckout') == 'softno' ) %]
422
                    [% IF ( Koha.Preference('CheckPrevCheckout') == 'softyes' || Koha.Preference('CheckPrevCheckout') == 'softno' ) %]
423
                    <th scope="col">Check previous checkout?</th>
423
                    <th scope="col">Check previous checkout?</th>
424
                    [% END %]
424
                    [% END %]
Lines 505-513 Link Here
505
                                [% END %]
505
                                [% END %]
506
                                <span title="[% branches_str | html %]">
506
                                <span title="[% branches_str | html %]">
507
                                    [% IF branch_limitations.size > 1 %]
507
                                    [% IF branch_limitations.size > 1 %]
508
                                        [% branch_limitations.size | html %] branches limitations
508
                                        [% branch_limitations.size | html %] library limitations
509
                                    [% ELSE %]
509
                                    [% ELSE %]
510
                                        [% branch_limitations.size | html %] branch limitation
510
                                        [% branch_limitations.size | html %] library limitation
511
                                    [% END %]
511
                                    [% END %]
512
                                </span>
512
                                </span>
513
                            [% ELSE %]
513
                            [% ELSE %]
514
- 

Return to bug 23605