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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt (-2 / +2 lines)
Lines 395-403 Link Here
395
                    <label for="sex-male">Male </label><input type="radio" name="sex" id="sex-male" value="M" />
395
                    <label for="sex-male">Male </label><input type="radio" name="sex" id="sex-male" value="M" />
396
                [% END %]
396
                [% END %]
397
                [% IF ( none ) %]
397
                [% IF ( none ) %]
398
                    <label for="sex-none">N/A </label><input type="radio" name="sex" id="sex-none" value=""  checked="checked"  />
398
                    <label for="sex-none">None specified </label><input type="radio" name="sex" id="sex-none" value=""  checked="checked"  />
399
                [% ELSE %]
399
                [% ELSE %]
400
                    <label for="sex-none">N/A </label><input type="radio" name="sex" id="sex-none" value="" />
400
                    <label for="sex-none">None specified </label><input type="radio" name="sex" id="sex-none" value="" />
401
                [% END %]
401
                [% END %]
402
            [% ELSE %]
402
            [% ELSE %]
403
                <label for="sex-female">Female </label><input type="radio" name="sex" id="sex-female" value="F" />
403
                <label for="sex-female">Female </label><input type="radio" name="sex" id="sex-female" value="F" />
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt (-2 / +1 lines)
Lines 241-247 Link Here
241
                                                <input type="radio" name="borrower_sex" id="sex-male" value="M" />
241
                                                <input type="radio" name="borrower_sex" id="sex-male" value="M" />
242
                                            [% END %]
242
                                            [% END %]
243
243
244
                                            <label for="sex-none" class="radio inline">N/A:</label>
244
                                            <label for="sex-none" class="radio inline">None specified: </label>
245
                                            [% IF borrower.sex == '' %]
245
                                            [% IF borrower.sex == '' %]
246
                                                <input type="radio" name="borrower_sex" id="sex-none" value="" checked="checked" />
246
                                                <input type="radio" name="borrower_sex" id="sex-none" value="" checked="checked" />
247
                                            [% ELSE %]
247
                                            [% ELSE %]
248
- 

Return to bug 14652