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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt (-3 / +3 lines)
Lines 199-219 Link Here
199
199
200
                                    [% UNLESS hidden.defined('sex') %]
200
                                    [% UNLESS hidden.defined('sex') %]
201
                                        <li class="lradio">
201
                                        <li class="lradio">
202
                                            <label for="sex-female" class="radio inline">Female:</label>
202
                                            <label for="sex-female" class="-inline">Female:</label>
203
                                            [% IF borrower.sex == 'F' %]
203
                                            [% IF borrower.sex == 'F' %]
204
                                                <input type="radio" name="borrower_sex" id="sex-female" value="F" checked="checked" />
204
                                                <input type="radio" name="borrower_sex" id="sex-female" value="F" checked="checked" />
205
                                            [% ELSE %]
205
                                            [% ELSE %]
206
                                                <input type="radio" name="borrower_sex" id="sex-female" value="F" />
206
                                                <input type="radio" name="borrower_sex" id="sex-female" value="F" />
207
                                            [% END %]
207
                                            [% END %]
208
208
209
                                            <label for="sex-male" class="radio inline">Male:</label>
209
                                            <label for="sex-male" class="-inline">Male:</label>
210
                                            [% IF borrower.sex == 'M' %]
210
                                            [% IF borrower.sex == 'M' %]
211
                                                <input type="radio" name="borrower_sex" id="sex-male" value="M" checked="checked" />
211
                                                <input type="radio" name="borrower_sex" id="sex-male" value="M" checked="checked" />
212
                                            [% ELSE %]
212
                                            [% ELSE %]
213
                                                <input type="radio" name="borrower_sex" id="sex-male" value="M" />
213
                                                <input type="radio" name="borrower_sex" id="sex-male" value="M" />
214
                                            [% END %]
214
                                            [% END %]
215
215
216
                                            <label for="sex-none" class="radio inline">N/A:</label>
216
                                            <label for="sex-none" class="-inline">N/A:</label>
217
                                            [% IF borrower.sex == '' %]
217
                                            [% IF borrower.sex == '' %]
218
                                                <input type="radio" name="borrower_sex" id="sex-none" value="" checked="checked" />
218
                                                <input type="radio" name="borrower_sex" id="sex-none" value="" checked="checked" />
219
                                            [% ELSE %]
219
                                            [% ELSE %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt (-3 / +2 lines)
Lines 231-244 Link Here
231
                                                        [% IF ( OPACItemHolds ) %]
231
                                                        [% IF ( OPACItemHolds ) %]
232
                                                            <!-- ITEM HOLDS -->
232
                                                            <!-- ITEM HOLDS -->
233
                                                            <li class="lradio">
233
                                                            <li class="lradio">
234
                                                                <label class="radio inline" for="reqany_[% bibitemloo.biblionumber %]">Next available copy</label>
234
                                                                <label class="-inline" for="reqany_[% bibitemloo.biblionumber %]">Next available copy</label>
235
                                                                [% UNLESS ( bibitemloo.holdable ) %]
235
                                                                [% UNLESS ( bibitemloo.holdable ) %]
236
                                                                    <input type="radio" name="reqtype_[% bibitemloo.biblionumber %]" id="reqany_[% bibitemloo.biblionumber %]" class="selectany" value="Any" disabled="disabled" />
236
                                                                    <input type="radio" name="reqtype_[% bibitemloo.biblionumber %]" id="reqany_[% bibitemloo.biblionumber %]" class="selectany" value="Any" disabled="disabled" />
237
                                                                [% ELSE %]
237
                                                                [% ELSE %]
238
                                                                    <input type="radio" name="reqtype_[% bibitemloo.biblionumber %]" id="reqany_[% bibitemloo.biblionumber %]" class="selectany" value="Any" checked="checked" />
238
                                                                    <input type="radio" name="reqtype_[% bibitemloo.biblionumber %]" id="reqany_[% bibitemloo.biblionumber %]" class="selectany" value="Any" checked="checked" />
239
                                                                [% END %]
239
                                                                [% END %]
240
240
241
                                                                <label class="radio inline" for="reqspecific_[% bibitemloo.biblionumber %]">A specific copy</label>
241
                                                                <label class="-inline" for="reqspecific_[% bibitemloo.biblionumber %]">A specific copy</label>
242
                                                                [% UNLESS ( bibitemloo.holdable ) %]
242
                                                                [% UNLESS ( bibitemloo.holdable ) %]
243
                                                                    <input type="radio" name="reqtype_[% bibitemloo.biblionumber %]" id="reqspecific_[% bibitemloo.biblionumber %]" class="selectspecific" disabled="disabled" value="Specific" />
243
                                                                    <input type="radio" name="reqtype_[% bibitemloo.biblionumber %]" id="reqspecific_[% bibitemloo.biblionumber %]" class="selectspecific" disabled="disabled" value="Specific" />
244
                                                                [% ELSE %]
244
                                                                [% ELSE %]
245
- 

Return to bug 11558