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

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/_forms.scss (-2 / +24 lines)
Lines 19-24 fieldset { Link Here
19
    }
19
    }
20
20
21
    &.fg {
21
    &.fg {
22
        container-name: form-grid;
23
        container-type: inline-size;
24
22
        .btn.btn-link {
25
        .btn.btn-link {
23
            padding: .175rem 0;
26
            padding: .175rem 0;
24
        }
27
        }
Lines 38-43 fieldset { Link Here
38
        }
41
        }
39
42
40
        .fg-row input[type="text"],
43
        .fg-row input[type="text"],
44
        .fg-row input[type="password"],
41
        .fg-row select {
45
        .fg-row select {
42
            background-color: #FFF;
46
            background-color: #FFF;
43
            border: 1px solid #AAAAAA;
47
            border: 1px solid #AAAAAA;
Lines 59-64 fieldset { Link Here
59
            margin: 0;
63
            margin: 0;
60
        }
64
        }
61
65
66
        .fg-row + .fg-row {
67
            margin-top: .5rem;
68
        }
69
62
        .fg-label,
70
        .fg-label,
63
        .fg-row .required {
71
        .fg-row .required {
64
            margin: .3rem 0;
72
            margin: .3rem 0;
Lines 68-80 fieldset { Link Here
68
            padding: .375rem .75rem;
76
            padding: .375rem .75rem;
69
        }
77
        }
70
78
71
        @media only screen and ( min-width: 608px ) {
79
        @container form-grid ( width > 608px ) {
72
            .fg-row {
80
            .fg-row {
73
                column-gap: .7rem;
81
                column-gap: .7rem;
74
                display: grid;
82
                display: grid;
75
                grid-template-columns: 15% 50% 15%;
83
                grid-template-columns: 15% 50% 15%;
76
                grid-template-rows: 1fr min-content;
84
                grid-template-rows: 1fr min-content;
77
85
86
                &.input-md {
87
                    grid-template-columns: 15% 30% 15%
88
                }
89
    
90
                &.input-sm {
91
                    grid-template-columns: 15% 15% 15%
92
                }
93
78
                &.wide {
94
                &.wide {
79
                    grid-template-columns: 15% 85%;
95
                    grid-template-columns: 15% 85%;
80
                }
96
                }
Lines 91-105 fieldset { Link Here
91
            }
107
            }
92
        }
108
        }
93
109
94
        @media only screen and ( min-width: 1700px ) {
110
        @container form-grid ( width > 1700px ) {
95
            .fg-row {
111
            .fg-row {
96
                grid-template-columns: 10% 35% 15%;
112
                grid-template-columns: 10% 35% 15%;
113
114
                &.wide {
115
                    grid-template-columns: 10% 90%;
116
                }
97
            }
117
            }
98
        }
118
        }
99
119
100
        .hint {
120
        .hint {
101
            color: #666;
121
            color: #666;
102
            font-size: 95%;
122
            font-size: 95%;
123
            grid-column-end: 4;
103
            grid-column-start: 2;
124
            grid-column-start: 2;
104
            margin: .3rem 0;
125
            margin: .3rem 0;
105
        }
126
        }
Lines 378-380 fieldset { Link Here
378
        }
399
        }
379
    }
400
    }
380
}
401
}
402
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tt (-30 / +30 lines)
Lines 130-136 Link Here
130
                [% IF library %]
130
                [% IF library %]
131
                    <input type="hidden" name="is_a_modif" value="1" />
131
                    <input type="hidden" name="is_a_modif" value="1" />
132
                [% END %]
132
                [% END %]
133
                <div class="fg-row">
133
                <div class="fg-row input-sm">
134
                    [% IF library %]
134
                    [% IF library %]
135
                        <div class="fg-label">
135
                        <div class="fg-label">
136
                            <span class="label">Library code: </span>
136
                            <span class="label">Library code: </span>
Lines 144-150 Link Here
144
                            <label for="branchcode" class="required">Library code: </label>
144
                            <label for="branchcode" class="required">Library code: </label>
145
                        </div>
145
                        </div>
146
                        <div class="fg-input">
146
                        <div class="fg-input">
147
                            <input type="text" name="branchcode" id="branchcode" size="10" maxlength="10" value="[% library.branchcode | html %]" class="required focus" required="required" />
147
                            <input type="text" name="branchcode" id="branchcode" maxlength="10" value="[% library.branchcode | html %]" class="required focus" required="required" />
148
                        </div>
148
                        </div>
149
                        <div class="required">Required</div>
149
                        <div class="required">Required</div>
150
                    [% END %]
150
                    [% END %]
Lines 155-163 Link Here
155
                    </div>
155
                    </div>
156
                    <div class="fg-input">
156
                    <div class="fg-input">
157
                        [% IF library %]
157
                        [% IF library %]
158
                            <input type="text" name="branchname" id="branchname" size="80" value="[% library.branchname | html %]" class="required focus" required="required" />
158
                            <input type="text" name="branchname" id="branchname" value="[% library.branchname | html %]" class="required focus" required="required" />
159
                        [% ELSE %]
159
                        [% ELSE %]
160
                            <input type="text" name="branchname" id="branchname" size="80" value="[% library.branchname | html %]" class="required" required="required" />
160
                            <input type="text" name="branchname" id="branchname" value="[% library.branchname | html %]" class="required" required="required" />
161
                        [% END %]
161
                        [% END %]
162
                    </div>
162
                    </div>
163
                    <div class="required">Required</div>
163
                    <div class="required">Required</div>
Lines 189-195 Link Here
189
                        <label for="branchaddress1">Address line 1: </label>
189
                        <label for="branchaddress1">Address line 1: </label>
190
                    </div>
190
                    </div>
191
                    <div class="fg-input">
191
                    <div class="fg-input">
192
                        <input type="text" name="branchaddress1" id="branchaddress1" size="60" value="[% library.branchaddress1 | html %]" />
192
                        <input type="text" name="branchaddress1" id="branchaddress1" value="[% library.branchaddress1 | html %]" />
193
                    </div>
193
                    </div>
194
                </div>
194
                </div>
195
                <div class="fg-row">
195
                <div class="fg-row">
Lines 197-203 Link Here
197
                        <label for="branchaddress2">Address line 2: </label>
197
                        <label for="branchaddress2">Address line 2: </label>
198
                    </div>
198
                    </div>
199
                    <div class="fg-input">
199
                    <div class="fg-input">
200
                        <input type="text" name="branchaddress2" id="branchaddress2" size="60" value="[% library.branchaddress2 | html %]" />
200
                        <input type="text" name="branchaddress2" id="branchaddress2" value="[% library.branchaddress2 | html %]" />
201
                    </div>
201
                    </div>
202
                </div>
202
                </div>
203
                <div class="fg-row">
203
                <div class="fg-row">
Lines 205-211 Link Here
205
                        <label for="branchaddress3">Address line 3: </label>
205
                        <label for="branchaddress3">Address line 3: </label>
206
                    </div>
206
                    </div>
207
                    <div class="fg-input">
207
                    <div class="fg-input">
208
                        <input type="text" name="branchaddress3" id="branchaddress3" size="60" value="[% library.branchaddress3 | html %]" />
208
                        <input type="text" name="branchaddress3" id="branchaddress3" value="[% library.branchaddress3 | html %]" />
209
                    </div>
209
                    </div>
210
                </div>
210
                </div>
211
                <div class="fg-row">
211
                <div class="fg-row">
Lines 213-219 Link Here
213
                        <label for="branchcity">City: </label>
213
                        <label for="branchcity">City: </label>
214
                    </div>
214
                    </div>
215
                    <div class="fg-input">
215
                    <div class="fg-input">
216
                        <input type="text" name="branchcity" id="branchcity" size="60" value="[% library.branchcity | html %]" />
216
                        <input type="text" name="branchcity" id="branchcity" value="[% library.branchcity | html %]" />
217
                    </div>
217
                    </div>
218
                </div>
218
                </div>
219
                <div class="fg-row">
219
                <div class="fg-row">
Lines 221-235 Link Here
221
                        <label for="branchstate">State: </label>
221
                        <label for="branchstate">State: </label>
222
                    </div>
222
                    </div>
223
                    <div class="fg-input">
223
                    <div class="fg-input">
224
                        <input type="text" name="branchstate" id="branchstate" size="60" value="[% library.branchstate | html %]" />
224
                        <input type="text" name="branchstate" id="branchstate" value="[% library.branchstate | html %]" />
225
                    </div>
225
                    </div>
226
                </div>
226
                </div>
227
                <div class="fg-row">
227
                <div class="fg-row input-md">
228
                    <div class="fg-label">
228
                    <div class="fg-label">
229
                        <label for="branchzip">ZIP/Postal code: </label>
229
                        <label for="branchzip">ZIP/Postal code: </label>
230
                    </div>
230
                    </div>
231
                    <div class="fg-input">
231
                    <div class="fg-input">
232
                        <input type="text" name="branchzip" id="branchzip" size="25" maxlength="25" value="[% library.branchzip | html %]" />
232
                        <input type="text" name="branchzip" id="branchzip" maxlength="25" value="[% library.branchzip | html %]" />
233
                    </div>
233
                    </div>
234
                </div>
234
                </div>
235
                <div class="fg-row">
235
                <div class="fg-row">
Lines 237-243 Link Here
237
                        <label for="branchcountry">Country: </label>
237
                        <label for="branchcountry">Country: </label>
238
                    </div>
238
                    </div>
239
                    <div class="fg-input">
239
                    <div class="fg-input">
240
                        <input type="text" name="branchcountry" id="branchcountry" size="60" value="[% library.branchcountry | html %]" />
240
                        <input type="text" name="branchcountry" id="branchcountry" value="[% library.branchcountry | html %]" />
241
                    </div>
241
                    </div>
242
                </div>
242
                </div>
243
                <div class="fg-row">
243
                <div class="fg-row">
Lines 245-251 Link Here
245
                        <label for="branchphone">Phone: </label>
245
                        <label for="branchphone">Phone: </label>
246
                    </div>
246
                    </div>
247
                    <div class="fg-input">
247
                    <div class="fg-input">
248
                        <input type="text" name="branchphone" id="branchphone" size="60" value="[% library.branchphone | html %]" />
248
                        <input type="text" name="branchphone" id="branchphone" value="[% library.branchphone | html %]" />
249
                    </div>
249
                    </div>
250
                </div>
250
                </div>
251
                <div class="fg-row">
251
                <div class="fg-row">
Lines 253-259 Link Here
253
                        <label for="branchfax">Fax: </label>
253
                        <label for="branchfax">Fax: </label>
254
                    </div>
254
                    </div>
255
                    <div class="fg-input">
255
                    <div class="fg-input">
256
                        <input type="text" name="branchfax" id="branchfax" size="60" value="[% library.branchfax | html %]" />
256
                        <input type="text" name="branchfax" id="branchfax" value="[% library.branchfax | html %]" />
257
                    </div>
257
                    </div>
258
                </div>
258
                </div>
259
                <div class="fg-row">
259
                <div class="fg-row">
Lines 261-267 Link Here
261
                        <label for="branchemail">Email: </label>
261
                        <label for="branchemail">Email: </label>
262
                    </div>
262
                    </div>
263
                    <div class="fg-input">
263
                    <div class="fg-input">
264
                        <input type="text" name="branchemail" id="branchemail" class="email" size="80" value="[% library.branchemail | html %]" />
264
                        <input type="text" name="branchemail" id="branchemail" class="email" value="[% library.branchemail | html %]" />
265
                    </div>
265
                    </div>
266
                </div>
266
                </div>
267
                [% IF (Koha.Preference('ILLModule')) %]
267
                [% IF (Koha.Preference('ILLModule')) %]
Lines 270-276 Link Here
270
                            <label for="branchillemail">ILL staff email: </label>
270
                            <label for="branchillemail">ILL staff email: </label>
271
                        </div>
271
                        </div>
272
                        <div class="fg-input">
272
                        <div class="fg-input">
273
                            <input type="text" name="branchillemail" id="branchillemail" class="email" size="80" value="[% library.branchillemail | html %]" />
273
                            <input type="text" name="branchillemail" id="branchillemail" class="email" value="[% library.branchillemail | html %]" />
274
                        </div>
274
                        </div>
275
                        <div class="hint">
275
                        <div class="hint">
276
                            [% IF ( CAN_user_parameters_manage_sysprefs ) %]
276
                            [% IF ( CAN_user_parameters_manage_sysprefs ) %]
Lines 287-293 Link Here
287
                        <label for="branchreplyto">Reply-To: </label>
287
                        <label for="branchreplyto">Reply-To: </label>
288
                    </div>
288
                    </div>
289
                    <div class="fg-input">
289
                    <div class="fg-input">
290
                        <input type="text" name="branchreplyto" id="branchreplyto" class="email" size="80" value="[% library.branchreplyto | html %]" />
290
                        <input type="text" name="branchreplyto" id="branchreplyto" class="email" value="[% library.branchreplyto | html %]" />
291
                    </div>
291
                    </div>
292
                    <div class="hint">
292
                    <div class="hint">
293
                        [% IF ( CAN_user_parameters_manage_sysprefs ) %]
293
                        [% IF ( CAN_user_parameters_manage_sysprefs ) %]
Lines 303-309 Link Here
303
                        <label for="branchreturnpath">Return-Path: </label>
303
                        <label for="branchreturnpath">Return-Path: </label>
304
                    </div>
304
                    </div>
305
                    <div class="fg-input">
305
                    <div class="fg-input">
306
                        <input type="text" name="branchreturnpath" id="branchreturnpath" class="email" size="80" value="[% library.branchreturnpath | html %]" />
306
                        <input type="text" name="branchreturnpath" id="branchreturnpath" class="email" value="[% library.branchreturnpath | html %]" />
307
                    </div>
307
                    </div>
308
                    <div class="hint">
308
                    <div class="hint">
309
                        [% IF ( CAN_user_parameters_manage_sysprefs ) %]
309
                        [% IF ( CAN_user_parameters_manage_sysprefs ) %]
Lines 340-346 Link Here
340
                        <label for="branchurl">URL: </label>
340
                        <label for="branchurl">URL: </label>
341
                    </div>
341
                    </div>
342
                    <div class="fg-input">
342
                    <div class="fg-input">
343
                        <input type="text" name="branchurl" id="branchurl" size="80" value="[% library.branchurl | html %]" class="url" />
343
                        <input type="text" name="branchurl" id="branchurl" value="[% library.branchurl | html %]" class="url" />
344
                    </div>
344
                    </div>
345
                </div>
345
                </div>
346
                <div class="fg-row">
346
                <div class="fg-row">
Lines 357-377 Link Here
357
                        [% END %]
357
                        [% END %]
358
                    </div>
358
                    </div>
359
                </div>
359
                </div>
360
                <div class="fg-row">
360
                <div class="fg-row input-md">
361
                    <div class="fg-label">
361
                    <div class="fg-label">
362
                        <label for="branchip">IP: </label>
362
                        <label for="branchip">IP: </label>
363
                    </div>
363
                    </div>
364
                    <div class="fg-input">
364
                    <div class="fg-input">
365
                        <input type="text" name="branchip" id="branchip" size="15" maxlength="15" value="[% library.branchip | html %]" />
365
                        <input type="text" name="branchip" id="branchip" maxlength="15" value="[% library.branchip | html %]" />
366
                    </div>
366
                    </div>
367
                    <div class="hint">Enter as a single IP address, or a subnet such as 192.168.1.*</div>
367
                    <div class="hint">Enter as a single IP address, or a subnet such as 192.168.1.*</div>
368
                </div>
368
                </div>
369
                <div class="fg-row">
369
                <div class="fg-row input-md">
370
                    <div class="fg-label">
370
                    <div class="fg-label">
371
                        <label for="marcorgcode">MARC organization code: </label>
371
                        <label for="marcorgcode">MARC organization code: </label>
372
                    </div>
372
                    </div>
373
                    <div class="fg-input">
373
                    <div class="fg-input">
374
                        <input type="text" name="marcorgcode" id="marcorgcode" size="16" maxlength="16" value="[% library.marcorgcode | html %]" />
374
                        <input type="text" name="marcorgcode" id="marcorgcode" maxlength="16" value="[% library.marcorgcode | html %]" />
375
                    </div>
375
                    </div>
376
                    <div class="hint">
376
                    <div class="hint">
377
                        [% IF ( CAN_user_parameters_manage_sysprefs ) %]
377
                        [% IF ( CAN_user_parameters_manage_sysprefs ) %]
Lines 388-394 Link Here
388
                        <label for="branchnotes">Notes: </label>
388
                        <label for="branchnotes">Notes: </label>
389
                    </div>
389
                    </div>
390
                    <div class="fg-input">
390
                    <div class="fg-input">
391
                        <input type="text" name="branchnotes" id="branchnotes" size="80" value="[% library.branchnotes | html %]" />
391
                        <input type="text" name="branchnotes" id="branchnotes" value="[% library.branchnotes | html %]" />
392
                    </div>
392
                    </div>
393
                </div>
393
                </div>
394
                <div class="fg-row">
394
                <div class="fg-row">
Lines 452-467 Link Here
452
                                            </td>
452
                                            </td>
453
                                            <td>
453
                                            <td>
454
                                                [% IF hr.open_time %]
454
                                                [% IF hr.open_time %]
455
                                                    <input type="text" size="5" value="[% hr.open_time | html %]" name="open_time" class="flatpickr" data-flatpickr-time-only="true" />
455
                                                    <input type="text" value="[% hr.open_time | html %]" name="open_time" class="flatpickr" data-flatpickr-time-only="true" />
456
                                                [% ELSE %]
456
                                                [% ELSE %]
457
                                                    <input type="text" size="5" value="" name="open_time" class="flatpickr" data-flatpickr-time-only="true" />
457
                                                    <input type="text" value="" name="open_time" class="flatpickr" data-flatpickr-time-only="true" />
458
                                                [% END %]
458
                                                [% END %]
459
                                            </td>
459
                                            </td>
460
                                            <td>
460
                                            <td>
461
                                                [% IF hr.close_time %]
461
                                                [% IF hr.close_time %]
462
                                                    <input type="text" size="5" value="[% hr.close_time | html %]" name="close_time" class="flatpickr" data-flatpickr-time-only="true" />
462
                                                    <input type="text" value="[% hr.close_time | html %]" name="close_time" class="flatpickr" data-flatpickr-time-only="true" />
463
                                                [% ELSE %]
463
                                                [% ELSE %]
464
                                                    <input type="text" size="5" value="" name="close_time" class="flatpickr" data-flatpickr-time-only="true" />
464
                                                    <input type="text" value="" name="close_time" class="flatpickr" data-flatpickr-time-only="true" />
465
                                                [% END %]
465
                                                [% END %]
466
                                            </td>
466
                                            </td>
467
                                        </tr>
467
                                        </tr>
Lines 475-484 Link Here
475
                                                <input type="hidden" value="[% d | html %]" name="day" />
475
                                                <input type="hidden" value="[% d | html %]" name="day" />
476
                                            </td>
476
                                            </td>
477
                                            <td>
477
                                            <td>
478
                                                <input type="text" size="5" name="open_time" class="noEnterSubmit flatpickr" data-flatpickr-time-only="true" />
478
                                                <input type="text" name="open_time" class="noEnterSubmit flatpickr" data-flatpickr-time-only="true" />
479
                                            </td>
479
                                            </td>
480
                                            <td>
480
                                            <td>
481
                                                <input type="text" size="5" name="close_time" class="noEnerSubmit flatpickr" data-flatpickr-time-only="true" />
481
                                                <input type="text" name="close_time" class="noEnerSubmit flatpickr" data-flatpickr-time-only="true" />
482
                                            </td>
482
                                            </td>
483
                                        </tr>
483
                                        </tr>
484
                                    [% END %]
484
                                    [% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/library_groups.tt (-56 / +87 lines)
Lines 97-160 Link Here
97
                    <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
97
                    <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
98
                </div>
98
                </div>
99
                <div class="modal-body">
99
                <div class="modal-body">
100
                    <fieldset class="brief">
100
                    <fieldset class="fg">
101
                        <input type="hidden" id="add-group-modal-parent-id" name="parent_id" value="" />
101
                        <input type="hidden" id="add-group-modal-parent-id" name="parent_id" value="" />
102
                        <input type="hidden" id="add-group-modal-action" name="op" value="cud-add" />
102
                        <input type="hidden" id="add-group-modal-action" name="op" value="cud-add" />
103
                        <ol>
103
                        <div class="fg-row">
104
                            <li>
104
                            <div class="fg-label">
105
                                <label for="add-group-modal-title">Title: </label>
105
                                <label for="add-group-modal-title">Title: </label>
106
                                <input type="text" size="40" maxlength="100" name="title" id="add-group-modal-title" required="required" />
106
                            </div>
107
                                <span class="required">Required</span>
107
                            <div class="fg-input">
108
                                <div class="hint">Displayed in the library group search dropdowns.</div>
108
                                <input type="text" maxlength="100" name="title" id="add-group-modal-title" required="required" />
109
                            </li>
109
                            </div>
110
                            <li>
110
                            <div class="hint">Displayed in the library group search dropdowns.</div>
111
                            <div class="required">Required</div>
112
                        </div>
113
                        <div class="fg-row">
114
                            <div class="fg-label">
111
                                <label for="add-group-modal-description">Description: </label>
115
                                <label for="add-group-modal-description">Description: </label>
112
                                <input type="text" size="40" name="description" id="add-group-modal-description" />
116
                            </div>
113
                            </li>
117
                            <div class="fg-input">
114
                        </ol>
118
                                <input type="text" name="description" id="add-group-modal-description" />
119
                            </div>
120
                        </div>
115
                    </fieldset>
121
                    </fieldset>
116
                    <div id="root-group-features-add">
122
                    <fieldset id="root-group-features-add" class="fg">
117
                        <h3>Features</h3>
123
                        <legend>Features</legend>
118
                        <div class="checkbox">
124
                        <div class="fg-row">
119
                            <p>
125
                            <div class="fg-checkbox">
120
                                <label>
126
                                <label>
121
                                    <input type="checkbox" name="ft_hide_patron_info" id="add-group-modal-ft_hide_patron_info" value="1" />
127
                                    <input type="checkbox" name="ft_hide_patron_info" id="add-group-modal-ft_hide_patron_info" value="1" />
122
                                    Limit patron data access by group
128
                                    Limit patron data access by group
123
                                </label>
129
                                </label>
124
                            </p>
130
                            </div>
125
                            <p>
131
                        </div>
132
                        <div class="fg-row">
133
                            <div class="fg-checkbox">
126
                                <label>
134
                                <label>
127
                                    <input type="checkbox" name="ft_limit_item_editing" id="add-group-modal-ft_limit_item_editing" value="1" />
135
                                    <input type="checkbox" name="ft_limit_item_editing" id="add-group-modal-ft_limit_item_editing" value="1" />
128
                                    Limit item editing by group
136
                                    Limit item editing by group
129
                                </label>
137
                                </label>
130
                            </p>
138
                            </div>
131
                            <p>
139
                        </div>
140
                        <div class="fg-row">
141
                            <div class="fg-checkbox">
132
                                <label>
142
                                <label>
133
                                    <input type="checkbox" name="ft_search_groups_opac" id="add-group-modal-ft_search_groups_opac" value="1" />
143
                                    <input type="checkbox" name="ft_search_groups_opac" id="add-group-modal-ft_search_groups_opac" value="1" />
134
                                    Use for OPAC search groups
144
                                    Use for OPAC search groups
135
                                </label>
145
                                </label>
136
                            </p>
146
                            </div>
137
                            <p>
147
                        </div>
148
                        <div class="fg-row">
149
                            <div class="fg-checkbox">
138
                                <label>
150
                                <label>
139
                                    <input type="checkbox" name="ft_search_groups_staff" id="add-group-modal-ft_search_groups_staff" value="1" />
151
                                    <input type="checkbox" name="ft_search_groups_staff" id="add-group-modal-ft_search_groups_staff" value="1" />
140
                                    Use for staff search groups
152
                                    Use for staff search groups
141
                                </label>
153
                                </label>
142
                            </p>
154
                            </div>
143
                            <p>
155
                        </div>
156
                        <div class="fg-row">
157
                            <div class="fg-checkbox">
144
                                <label>
158
                                <label>
145
                                    <input type="checkbox" name="ft_local_hold_group" id="add-group-modal-ft_local_hold_group" value="1" />
159
                                    <input type="checkbox" name="ft_local_hold_group" id="add-group-modal-ft_local_hold_group" value="1" />
146
                                    Is local hold group
160
                                    Is local hold group
147
                                </label>
161
                                </label>
148
                            </p>
162
                            </div>
149
                            <p>
163
                        </div>
164
                        <div class="fg-row">
165
                            <div class="fg-checkbox">
150
                                <label>
166
                                <label>
151
                                    <input type="checkbox" name="ft_local_float_group" id="add-group-modal-ft_local_float_group" value="1" />
167
                                    <input type="checkbox" name="ft_local_float_group" id="add-group-modal-ft_local_float_group" value="1" />
152
                                    Is local float group
168
                                    Is local float group
153
                                </label>
169
                                </label>
154
                            </p>
170
                            </div>
155
                        </div>
171
                        </div>
156
                    </div>
172
                    </fieldset>
157
                </div>
173
                </div>
174
                <!-- /.modal-body -->
158
                <div class="modal-footer">
175
                <div class="modal-footer">
159
                    <button type="submit" class="btn btn-primary">Save</button>
176
                    <button type="submit" class="btn btn-primary">Save</button>
160
                    <button type="button" class="btn btn-default" data-bs-dismiss="modal">Close</button>
177
                    <button type="button" class="btn btn-default" data-bs-dismiss="modal">Close</button>
Lines 181-242 Link Here
181
                <div class="modal-body">
198
                <div class="modal-body">
182
                    <input type="hidden" id="edit-group-modal-id" name="id" value="" />
199
                    <input type="hidden" id="edit-group-modal-id" name="id" value="" />
183
                    <input type="hidden" id="edit-group-modal-action" name="op" value="cud-edit" />
200
                    <input type="hidden" id="edit-group-modal-action" name="op" value="cud-edit" />
184
                    <fieldset class="brief">
201
                    <fieldset class="fg">
185
                        <ol>
202
                        <div class="fg-row">
186
                            <li>
203
                            <div class="fg-label">
187
                                <label for="edit-group-modal-title">Title: </label>
204
                                <label for="edit-group-modal-title">Title: </label>
188
                                <input type="text" size="40" maxlength="100" id="edit-group-modal-title" name="title" value="" required="required" />
205
                            </div>
189
                                <span class="required">Required</span>
206
                            <div class="fg-input">
190
                                <div class="hint">Displayed in the library group search dropdowns.</div>
207
                                <input type="text" maxlength="100" id="edit-group-modal-title" name="title" value="" required="required" />
191
                            </li>
208
                            </div>
192
209
                            <div class="required">Required</div>
193
                            <li>
210
                            <div class="hint">Displayed in the library group search dropdowns.</div>
211
                        </div>
212
                        <div class="fg-row">
213
                            <div class="fg-label">
194
                                <label for="edit-group-modal-description">Description: </label>
214
                                <label for="edit-group-modal-description">Description: </label>
195
                                <input type="text" size="40" id="edit-group-modal-description" name="description" value="" />
215
                            </div>
196
                            </li>
216
                            <div class="fg-input">
197
                        </ol>
217
                                <input type="text" id="edit-group-modal-description" name="description" value="" />
218
                            </div>
219
                        </div>
198
                    </fieldset>
220
                    </fieldset>
199
                    <div id="root-group-features-edit">
221
                    <fieldset id="root-group-features-edit" class="fg">
200
                        <h3>Features</h3>
222
                        <legend>Features</legend>
201
                        <div class="checkbox">
223
                        <div class="fg-row">
202
                            <p>
224
                            <div class="fg-checkbox">
203
                                <label>
225
                                <label>
204
                                    <input type="checkbox" id="edit-group-modal-ft_hide_patron_info" name="ft_hide_patron_info" value="1" />
226
                                    <input type="checkbox" id="edit-group-modal-ft_hide_patron_info" name="ft_hide_patron_info" value="1" />
205
                                    Limit patron data access by group
227
                                    Limit patron data access by group
206
                                </label>
228
                                </label>
207
                            </p>
229
                            </div>
208
                            <p>
230
                        </div>
231
                        <div class="fg-row">
232
                            <div class="fg-checkbox">
209
                                <label>
233
                                <label>
210
                                    <input type="checkbox" id="edit-group-modal-ft_limit_item_editing" name="ft_limit_item_editing" value="1" />
234
                                    <input type="checkbox" id="edit-group-modal-ft_limit_item_editing" name="ft_limit_item_editing" value="1" />
211
                                    Limit item editing by group
235
                                    Limit item editing by group
212
                                </label>
236
                                </label>
213
                            </p>
237
                            </div>
214
                            <p>
238
                        </div>
239
                        <div class="fg-row">
240
                            <div class="fg-checkbox">
215
                                <label>
241
                                <label>
216
                                    <input type="checkbox" id="edit-group-modal-ft_search_groups_opac" name="ft_search_groups_opac" value="1" />
242
                                    <input type="checkbox" id="edit-group-modal-ft_search_groups_opac" name="ft_search_groups_opac" value="1" />
217
                                    Use for OPAC search groups
243
                                    Use for OPAC search groups
218
                                </label>
244
                                </label>
219
                            </p>
245
                            </div>
220
                            <p>
246
                        </div>
247
                        <div class="fg-row">
248
                            <div class="fg-checkbox">
221
                                <label>
249
                                <label>
222
                                    <input type="checkbox" id="edit-group-modal-ft_search_groups_staff" name="ft_search_groups_staff" value="1" />
250
                                    <input type="checkbox" id="edit-group-modal-ft_search_groups_staff" name="ft_search_groups_staff" value="1" />
223
                                    Use for staff search groups
251
                                    Use for staff search groups
224
                                </label>
252
                                </label>
225
                            </p>
253
                            </div>
226
                            <p>
254
                        </div>
255
                        <div class="fg-row">
256
                            <div class="fg-checkbox">
227
                                <label>
257
                                <label>
228
                                    <input type="checkbox" id="edit-group-modal-ft_local_hold_group" name="ft_local_hold_group" value="1" />
258
                                    <input type="checkbox" id="edit-group-modal-ft_local_hold_group" name="ft_local_hold_group" value="1" />
229
                                    Is local hold group
259
                                    Is local hold group
230
                                </label>
260
                                </label>
231
                            </p>
261
                            </div>
232
                            <p>
262
                        </div>
263
                        <div class="fg-row">
264
                            <div class="fg-checkbox">
233
                                <label>
265
                                <label>
234
                                    <input type="checkbox" id="edit-group-modal-ft_local_float_group" name="ft_local_float_group" value="1" />
266
                                    <input type="checkbox" id="edit-group-modal-ft_local_float_group" name="ft_local_float_group" value="1" />
235
                                    Is local float group
267
                                    Is local float group
236
                                </label>
268
                                </label>
237
                            </p>
269
                            </div>
238
                        </div>
270
                        </div>
239
                    </div>
271
                    </fieldset>
240
                </div>
272
                </div>
241
                <div class="modal-footer">
273
                <div class="modal-footer">
242
                    <button type="submit" class="btn btn-primary">Update</button>
274
                    <button type="submit" class="btn btn-primary">Update</button>
243
- 

Return to bug 39780