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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categories.tt (-9 / +15 lines)
Lines 211-220 Link Here
211
                  </li>
211
                  </li>
212
                [% END %]
212
                [% END %]
213
                <li>
213
                <li>
214
                    <label for="quick_add_display">Display in quick add patron list:</label>
214
                    <label for="quick_add_display">Display in quick add: </label>
215
                    <select id=quick_add_display name=quick_add_display>
215
                    <select id="quick_add_display" name="quick_add_display">
216
                        <option value=1 [% UNLESS category.quick_add_display %]selected=selected [% END %]>Display</option>
216
                        [% IF category.quick_add_display %]
217
                        <option value=0 [% UNLESS category.quick_add_display %]selected=selected [% END %]>Don't Display</option>
217
                            <option value="1" selected="selected">Yes</option>
218
                            <option value="0">No</option>
219
                        [% ELSE %]
220
                            <option value="1">Yes</option>
221
                            <option value="0" selected="selected">No</option>
222
                        [% END %]
218
                    </select>
223
                    </select>
219
                </li>
224
                </li>
220
                <li>
225
                <li>
Lines 289-295 Link Here
289
                <tr><th scope="row">Receives overdue notices: </th><td>[% IF category. overduenoticerequired %]Yes[% ELSE %]No[% END %]</td></tr>
294
                <tr><th scope="row">Receives overdue notices: </th><td>[% IF category. overduenoticerequired %]Yes[% ELSE %]No[% END %]</td></tr>
290
                <tr><th scope="row">Lost items in staff client</th><td>[% IF category.hidelostitems %]Hidden by default[% ELSE %]Shown[% END %]</td></tr>
295
                <tr><th scope="row">Lost items in staff client</th><td>[% IF category.hidelostitems %]Hidden by default[% ELSE %]Shown[% END %]</td></tr>
291
                <tr><th scope="row">Hold fee: </th><td>[% category.reservefee | $Price %]</td></tr>
296
                <tr><th scope="row">Hold fee: </th><td>[% category.reservefee | $Price %]</td></tr>
292
                <tr><th scope="row">Display in Quick Add Patron</th>></tr>
297
                <tr><th scope="row">Display in quick add</th><td>[% IF category.quick_add_display %]Yes[% ELSE %]No[% END %]</td></tr>
293
298
294
                [% IF ( Koha.Preference('CheckPrevCheckout') == 'softyes' || Koha.Preference('CheckPrevCheckout') == 'softno' ) %]
299
                [% IF ( Koha.Preference('CheckPrevCheckout') == 'softyes' || Koha.Preference('CheckPrevCheckout') == 'softno' ) %]
295
                  <tr>
300
                  <tr>
Lines 362-368 Link Here
362
                    <th scope="col">Messaging</th>
367
                    <th scope="col">Messaging</th>
363
                    [% END %]
368
                    [% END %]
364
                    <th scope="col">Branches limitations</th>
369
                    <th scope="col">Branches limitations</th>
365
                    <th scope="col">Display in Quick Add Patron</th>
370
                    <th scope="col">Display in quick add</th>
366
                    [% IF ( Koha.Preference('CheckPrevCheckout') == 'softyes' || Koha.Preference('CheckPrevCheckout') == 'softno' ) %]
371
                    [% IF ( Koha.Preference('CheckPrevCheckout') == 'softyes' || Koha.Preference('CheckPrevCheckout') == 'softno' ) %]
367
                    <th scope="col">Check previous checkout?</th>
372
                    <th scope="col">Check previous checkout?</th>
368
                    [% END %]
373
                    [% END %]
Lines 471-478 Link Here
471
                          </td>
476
                          </td>
472
                        [% END %]
477
                        [% END %]
473
                        <td>
478
                        <td>
474
                            [% IF category.quick_add_display %] Display
479
                            [% IF category.quick_add_display %]
475
                            [% ELSE %] Don't Display
480
                                Yes
481
                            [% ELSE %]
482
                                No
476
                            [% END %]
483
                            [% END %]
477
                        </td>
484
                        </td>
478
                        <td>
485
                        <td>
479
- 

Return to bug 18818