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 %] |