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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-brief.tt (-1 / +1 lines)
Lines 48-54 Link Here
48
    [% END %]
48
    [% END %]
49
    <li><span class="label">Initials: </span>[% initials %]</li>
49
    <li><span class="label">Initials: </span>[% initials %]</li>
50
    <li><span class="label">Date of birth:</span>[% dateofbirth %]</li>
50
    <li><span class="label">Date of birth:</span>[% dateofbirth %]</li>
51
    <li><span class="label">Sex:</span>[% sex %]</li>[% END %]
51
    <li><span class="label">Gender:</span>[% IF ( sex == 'F' ) %]Female[% ELSIF ( sex == 'M' ) %]Male[% ELSE %][% sex %][% END %]</li>[% END %]
52
    [% IF ( printethnicityline ) %]
52
    [% IF ( printethnicityline ) %]
53
    <li><span class="label">Ethnicity:</span>[% ethnicity %]</li>
53
    <li><span class="label">Ethnicity:</span>[% ethnicity %]</li>
54
    <li><span class="label">Ethnicity notes: </span>[% ethnotes %]</li>
54
    <li><span class="label">Ethnicity notes: </span>[% ethnotes %]</li>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt (-1 / +3 lines)
Lines 212-218 function validate1(date) { Link Here
212
    [% END %]
212
    [% END %]
213
    <li><span class="label">Initials: </span>[% initials %]</li>
213
    <li><span class="label">Initials: </span>[% initials %]</li>
214
    <li><span class="label">Date of birth:</span>[% dateofbirth %]</li>
214
    <li><span class="label">Date of birth:</span>[% dateofbirth %]</li>
215
    <li><span class="label">Sex:</span>[% sex %]</li>[% END %]
215
    <li><span class="label">Gender:</span>
216
    [% IF ( sex == 'F' ) %]Female[% ELSIF ( sex == 'M' ) %]Male[% ELSE %][% sex %][% END %]
217
    </li>[% END %]
216
    [% IF ( printethnicityline ) %]
218
    [% IF ( printethnicityline ) %]
217
    <li><span class="label">Ethnicity:</span>[% ethnicity %]</li>
219
    <li><span class="label">Ethnicity:</span>[% ethnicity %]</li>
218
    <li><span class="label">Ethnicity notes: </span>[% ethnotes %]</li>
220
    <li><span class="label">Ethnicity notes: </span>[% ethnotes %]</li>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/borrowers_stats.tt (-1 / +1 lines)
Lines 209-215 Link Here
209
                    </td>
209
                    </td>
210
                </tr>
210
                </tr>
211
            <tr>
211
            <tr>
212
                <td>Sex</td>
212
                <td>Gender</td>
213
                <td><input type="radio" name="Line" value="sex" /></td>
213
                <td><input type="radio" name="Line" value="sex" /></td>
214
                <td><input type="radio" name="Column" value="sex" /></td>
214
                <td><input type="radio" name="Column" value="sex" /></td>
215
                <td>
215
                <td>
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-userdetails.tt (-1 / +1 lines)
Lines 51-57 Card Number:</th><td>[% cardnumber %]</td></tr> Link Here
51
<caption>Identity Details</caption>
51
<caption>Identity Details</caption>
52
<tr><th scope="row">DoB:</th><td> [% IF ( dateofbirth ) %][% dateofbirth %][% ELSE %]&nbsp;[% END %]</td></tr>
52
<tr><th scope="row">DoB:</th><td> [% IF ( dateofbirth ) %][% dateofbirth %][% ELSE %]&nbsp;[% END %]</td></tr>
53
53
54
<tr><th scope="row">Sex:</th><td>[% IF ( sex ) %][% sex %][% ELSE %]&nbsp;[% END %]</td></tr></table>
54
<tr><th scope="row">Gender:</th><td>[% IF ( sex ) %][% sex %][% ELSE %]&nbsp;[% END %]</td></tr></table>
55
55
56
[% IF ( contactname ) %]
56
[% IF ( contactname ) %]
57
<table>
57
<table>
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-userupdate.tt (-3 / +2 lines)
Lines 66-72 Link Here
66
<fieldset class="brief">
66
<fieldset class="brief">
67
<ol>
67
<ol>
68
<li><label for="dob">Date of Birth: </label> <input id="dob" type="text" size="10" value="[% BORROWER_INF.dateofbirth %]" name="dateofbirth" /></li>
68
<li><label for="dob">Date of Birth: </label> <input id="dob" type="text" size="10" value="[% BORROWER_INF.dateofbirth %]" name="dateofbirth" /></li>
69
<li><label for="sex">Sex: </label> <select name="sex" id="sex"><option></option>
69
<li><label for="sex">Gender: </label> <select name="sex" id="sex"><option></option>
70
[% IF ( BORROWER_INF.sex == 'F' ) %]<option value="F" selected="selected">Female</option>[% ELSE %]<option value="F">Female</option>[% END %]
70
[% IF ( BORROWER_INF.sex == 'F' ) %]<option value="F" selected="selected">Female</option>[% ELSE %]<option value="F">Female</option>[% END %]
71
[% IF ( BORROWER_INF.sex == 'M' ) %]<option value="M" selected="selected">Male</option>[% ELSE %]<option value="M">Male</option>[% END %]
71
[% IF ( BORROWER_INF.sex == 'M' ) %]<option value="M" selected="selected">Male</option>[% ELSE %]<option value="M">Male</option>[% END %]
72
</select></li>
72
</select></li>
Lines 126-132 Link Here
126
<legend>Personal Information</legend>
126
<legend>Personal Information</legend>
127
<ol>
127
<ol>
128
<li><span class="label">Date of Birth:</span> [% BORROWER_INF.dateofbirth %]</li>
128
<li><span class="label">Date of Birth:</span> [% BORROWER_INF.dateofbirth %]</li>
129
<li><span class="label">Sex:</span>
129
<li><span class="label">Gender:</span>
130
[% IF ( sex == 'F' ) %]Female[% END %]
130
[% IF ( sex == 'F' ) %]Female[% END %]
131
[% IF ( sex == 'M' ) %]Male[% END %]
131
[% IF ( sex == 'M' ) %]Male[% END %]
132
</li>
132
</li>
133
- 

Return to bug 5020